summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/links2/default.nix
blob: 7e8523fae40e251f772114495672bb99acf4eb42 (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
a :  
let 
  s = import ./src-for-default.nix;
  buildInputs = with a; [
    libpng libjpeg bzip2 zlib libtiff
    directfb libX11 libXau xproto gpm
    openssl libXt pkgconfig
  ];
in
rec {
  src = a.fetchUrlFromSrcInfo s;

  inherit (s) name;
  inherit buildInputs;
  configureFlags = [
    "--enable-graphics"
    "--with-ssl"
    "--with-x"
    "--with-fb"
    ];

  /* doConfigure should be removed if not needed */
  phaseNames = ["doConfigure" "doMakeInstall"];
      
  meta = {
    description = "A small browser with some graphics support";
    maintainers = [
      a.lib.maintainers.raskin
    ];
    platforms = with a.lib.platforms; 
      linux;
  };
}