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