nixpkgs/pkgs/applications/networking/browsers/dillo/default.nix

33 lines
839 B
Nix
Raw Normal View History

{ stdenv, fetchurl
, fltk
, openssl
, libjpeg, libpng
, perl
, libXcursor, libXi, libXinerama }:
stdenv.mkDerivation rec {
2015-07-24 03:05:19 +01:00
version = "3.0.5";
pname = "dillo";
src = fetchurl {
url = "https://www.dillo.org/download/${pname}-${version}.tar.bz2";
2015-07-24 03:05:19 +01:00
sha256 = "12ql8n1lypv3k5zqgwjxlw1md90ixz3ag6j1gghfnhjq3inf26yv";
};
buildInputs = with stdenv.lib;
2015-07-24 03:05:19 +01:00
[ perl fltk openssl libjpeg libpng libXcursor libXi libXinerama ];
configureFlags = [ "--enable-ssl" ];
meta = with stdenv.lib; {
homepage = "https://www.dillo.org/";
description = "A fast graphical web browser with a small footprint";
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;
};
}