mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
33 lines
830 B
Nix
33 lines
830 B
Nix
{ lib, stdenv, fetchurl
|
|
, fltk
|
|
, openssl
|
|
, libjpeg, libpng
|
|
, perl
|
|
, libXcursor, libXi, libXinerama }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.0.5";
|
|
pname = "dillo";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.dillo.org/download/${pname}-${version}.tar.bz2";
|
|
sha256 = "12ql8n1lypv3k5zqgwjxlw1md90ixz3ag6j1gghfnhjq3inf26yv";
|
|
};
|
|
|
|
buildInputs = with lib;
|
|
[ perl fltk openssl libjpeg libpng libXcursor libXi libXinerama ];
|
|
|
|
configureFlags = [ "--enable-ssl" ];
|
|
|
|
meta = with 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;
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|