2009-10-24 17:39:54 +02:00
|
|
|
a :
|
|
|
|
let
|
|
|
|
s = import ./src-for-default.nix;
|
|
|
|
buildInputs = with a; [
|
|
|
|
libpng libjpeg bzip2 zlib libtiff
|
2009-11-05 22:09:36 +01:00
|
|
|
libX11 libXau xproto gpm
|
2009-10-24 17:39:54 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|