mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
b39e5ce957
In this commit, I modified some files, conforming them to a idiosyncratic standard - mainly, a template for meta attribs.
34 lines
831 B
Nix
34 lines
831 B
Nix
{ stdenv, fetchurl
|
|
, fltk
|
|
, openssl
|
|
, libjpeg, libpng
|
|
, perl
|
|
, libXcursor, libXi, libXinerama }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.0.4";
|
|
name = "dillo-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.dillo.org/download/${name}.tar.bz2";
|
|
sha256 = "0ffz481vgl7f12f575pmbagm8swgxgv9s9c0p8c7plhd04jsnazf";
|
|
};
|
|
|
|
buildInputs = with stdenv.lib;
|
|
[ fltk openssl libjpeg libpng libXcursor libXi libXinerama ];
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
configureFlags = "--enable-ssl";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://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;
|
|
};
|
|
}
|