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