fcad0b0a5a
Some of these should be longDescriptions, but most others just shouldn't contain newlines. E.g. write description = "Bla"; and not description = '' Bla ''; This pollutes "nix-env -qa --description" output. svn path=/nixpkgs/trunk/; revision=14310
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
args : with args; let localDefs = builderDefs.passthru.function (args // rec {
|
|
version = lib.getAttr ["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" "gtk" "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";
|
|
builder = writeScript (name + "-builder")
|
|
(textClosure localDefs [preConfigure doConfigure doMakeInstall doForceShare doPropagate]);
|
|
meta = {
|
|
description = "A set of screensavers";
|
|
inherit src;
|
|
};
|
|
}
|
|
|