summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/ldcpp/1.0.1.nix
blob: 00626377e7c43c28d1d66808c277a4c5940b3df5 (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
args : with args; with builderDefs;
	let localDefs = builderDefs.meta.function ((rec {
		src = /* put a fetchurl here */
		fetchurl {
			url = http://download2.berlios.de/linuxdcpp/linuxdcpp-1.0.1.tar.bz2;
			sha256 = "0f0vvsa3x3nirqnf2lagpmbbj3pgdcp6wa2gvadj294b3va4hx34";
		};

		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;
	};
}