mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 06:28:50 +03:00
34 lines
668 B
Nix
34 lines
668 B
Nix
|
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;
|
||
|
};
|
||
|
}
|