summary refs log tree commit diff
path: root/pkgs/applications/graphics/xscreensaver/5.04.nix
blob: 132bf997e18cd58bb8aa6aaf9f184247c2e291c5 (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
34
35
36
37
38
args : with args; with builderDefs (args // {
		src = /* put a fetchurl here */
		fetchurl {
			url = http://www.jwz.org/xscreensaver/xscreensaver-5.04.tar.gz;
			sha256 = "1mx6zc6rvb6pr9wb6mv4ljiii9ybw0dshd74aclf7rlmfx4hn86i";
		};
		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 ")
		];
	}) null; /* null is a terminator for sumArgs */
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-"+version;
	builder = writeScript (name + "-builder")
		(textClosure [preConfigure doConfigure doMakeInstall doForceShare doPropagate]);
	meta = {
		description = "
	The X screensaver daemon. Run xscreensaver-demo to configure.
";
	};
}