summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/ldcpp/1.0.3.nix
blob: a95611af6fe1311f01f3d5df4eebeb03de0dac11 (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
args : with args; with builderDefs;
	let localDefs = builderDefs.passthru.function ((rec {
		src = /* put a fetchurl here */
		fetchurl {
			url = http://launchpad.net/linuxdcpp/1.0/1.0.3/+download/linuxdcpp-1.0.3.tar.bz2;
			sha256 = "0w9c8k13cl85y4v4av8ic6w4zkdivcj6p5q86llfh3sz077vckiv";
		};

		buildInputs = [scons pkgconfig gtk bzip2 pkgconfig libglade
			openssl libX11];
		configureFlags = [];
		doScons = FullDepEntry (''
			ensureDir $out
			export NIX_LDFLAGS="$NIX_LDFLAGS -lX11";
			scons PREFIX=$out 
			scons PREFIX=$out install
		'') ["minInit" "doUnpack" "addInputs" "defEnsureDir"];
	}) //  args);
	in with localDefs;
stdenv.mkDerivation rec {
	name = "ldcpp-"+version;
	builder = writeScript (name + "-builder")
		(textClosure localDefs 
			[doScons doForceShare doPropagate]);
	meta = {
		description = "Linux DC++ - Direct Connect client";
		inherit src;
	};
}