2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl
|
2014-04-17 05:59:31 -07:00
|
|
|
, fltk
|
|
|
|
, openssl
|
|
|
|
, libjpeg, libpng
|
|
|
|
, perl
|
2014-09-10 11:59:54 -07:00
|
|
|
, libXcursor, libXi, libXinerama }:
|
2014-04-17 05:59:31 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-07-23 19:05:19 -07:00
|
|
|
version = "3.0.5";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "dillo";
|
2014-04-17 05:59:31 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://www.dillo.org/download/${pname}-${version}.tar.bz2";
|
2015-07-23 19:05:19 -07:00
|
|
|
sha256 = "12ql8n1lypv3k5zqgwjxlw1md90ixz3ag6j1gghfnhjq3inf26yv";
|
2014-04-17 05:59:31 -07:00
|
|
|
};
|
|
|
|
|
2021-01-15 05:21:58 -08:00
|
|
|
buildInputs = with lib;
|
2015-07-23 19:05:19 -07:00
|
|
|
[ perl fltk openssl libjpeg libpng libXcursor libXi libXinerama ];
|
2014-04-17 05:59:31 -07:00
|
|
|
|
2018-08-03 09:52:40 -07:00
|
|
|
configureFlags = [ "--enable-ssl" ];
|
2014-04-17 05:59:31 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.dillo.org/";
|
2014-04-17 05:59:31 -07:00
|
|
|
description = "A fast graphical web browser with a small footprint";
|
2014-09-10 11:59:54 -07:00
|
|
|
longDescription = ''
|
|
|
|
Dillo is a small, fast web browser, tailored for older machines.
|
|
|
|
'';
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
2018-08-05 07:24:34 -07:00
|
|
|
license = licenses.gpl3;
|
2014-04-17 05:59:31 -07:00
|
|
|
};
|
|
|
|
}
|