5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
87 lines
1.9 KiB
Nix
87 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
autoreconfHook,
|
|
fetchFromGitHub,
|
|
fltk,
|
|
giflib,
|
|
libXcursor,
|
|
libXi,
|
|
libXinerama,
|
|
libjpeg,
|
|
libpng,
|
|
libressl,
|
|
mbedtls,
|
|
openssl,
|
|
perl,
|
|
pkg-config,
|
|
stdenv,
|
|
which,
|
|
# Configurable options
|
|
tlsLibrary? "libressl"
|
|
}:
|
|
|
|
let
|
|
ssl = {
|
|
"libressl" = libressl;
|
|
"mbedtls" = mbedtls;
|
|
"openssl" = openssl;
|
|
}.${tlsLibrary} or (throw "Unrecognized tlsLibrary option: ${tlsLibrary}");
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dillo";
|
|
version = "3.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dillo-browser";
|
|
repo = "dillo";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-AqffkUPLvVSGq9iYksyvHf3HQ3DLWNlB3CYw4GCAAEI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
fltk
|
|
which
|
|
];
|
|
|
|
buildInputs = [
|
|
fltk
|
|
giflib
|
|
libXcursor
|
|
libXi
|
|
libXinerama
|
|
libjpeg
|
|
libpng
|
|
perl
|
|
ssl
|
|
];
|
|
|
|
outputs = [ "out" "doc" "man" ];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
homepage = "https://dillo-browser.github.io/";
|
|
description = "A fast graphical web browser with a small footprint";
|
|
longDescription = ''
|
|
Dillo is a fast and small graphical web browser with the following
|
|
features:
|
|
|
|
- Multi-platform, running on Linux, BSD, MacOS, Windows (via Cygwin) and
|
|
even Atari.
|
|
- Written in C and C++ with few dependencies.
|
|
- Implements its own real-time rendering engine.
|
|
- Low memory usage and fast rendering, even with large pages.
|
|
- Uses the fast and bloat-free FLTK GUI library.
|
|
- Support for HTTP, HTTPS, FTP and local files.
|
|
- Extensible with plugins written in any language.
|
|
- Is free software licensed with the GPLv3.
|
|
- Helps authors to comply with web standards by using the bug meter.
|
|
'';
|
|
mainProgram = "dillo";
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|