about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/dillo/default.nix
blob: c6c8626388895643e08d7be25e2ebd08fea670c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ 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;
  };
}