f7f938a1d1
getAttr was ambiguous. It's also a builtin function fix svn path=/nixpkgs/trunk/; revision=15692
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
args : with args; let localDefs = builderDefs.passthru.function (args // rec {
|
|
version = lib.attrByPath ["version"] "5.07" args;
|
|
src = /* put a fetchurl here */
|
|
fetchurl {
|
|
url = "http://www.jwz.org/xscreensaver/xscreensaver-${version}.tar.gz";
|
|
sha256 = "1dmd9gwwqr4rnhxl71x1wn8j3xgijbpf6ydx42xzrzxi0x6afl4c";
|
|
};
|
|
useConfig = true;
|
|
reqsList = [
|
|
["true" "libX11" "pkgconfig" "bc" "perl" "intltool" "libXmu"]
|
|
["GL" "mesa"]
|
|
["GUI" "gtk" "libxml2" "libglade"]
|
|
["jpeg" "libjpeg"]
|
|
["false"]
|
|
];
|
|
configFlags = [
|
|
"GL" " --with-gl "
|
|
"gdkpixbuf" " --with-pixbuf "
|
|
"DPMS" " --with-dpms "
|
|
"true" (" --with-x-app-defaults=\$out/share/xscreensaver/app-defaults "+
|
|
" --with-hackdir=\$out/share/xscreensaver-hacks ")
|
|
];
|
|
});
|
|
in with localDefs;
|
|
let
|
|
preConfigure = fullDepEntry ("
|
|
sed -e 's%@GTK_DATADIR@%@datadir@% ; s%@PO_DATADIR@%@datadir@%' "+
|
|
"-i driver/Makefile.in po/Makefile.in.in;
|
|
") ["minInit" "doUnpack"];
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "xscreensaver-5.07";
|
|
buildCommand = textClosure localDefs
|
|
[preConfigure doConfigure doMakeInstall doForceShare doPropagate];
|
|
meta = {
|
|
description = "A set of screensavers";
|
|
inherit src;
|
|
};
|
|
}
|
|
|