about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/ldcpp/1.0.1.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/p2p/ldcpp/1.0.1.nix')
-rw-r--r--pkgs/applications/networking/p2p/ldcpp/1.0.1.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/p2p/ldcpp/1.0.1.nix b/pkgs/applications/networking/p2p/ldcpp/1.0.1.nix
index ea1f6b1b84b2a..00626377e7c43 100644
--- a/pkgs/applications/networking/p2p/ldcpp/1.0.1.nix
+++ b/pkgs/applications/networking/p2p/ldcpp/1.0.1.nix
@@ -1,5 +1,5 @@
-args : with args; with builderDefs {src="";} null;
-	let localDefs = builderDefs (rec {
+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;
@@ -15,7 +15,7 @@ args : with args; with builderDefs {src="";} null;
 			scons PREFIX=$out 
 			scons PREFIX=$out install
 		'') ["minInit" "doUnpack" "addInputs" "defEnsureDir"];
-	}) args null; /* null is a terminator for sumArgs */
+	}) //  args);
 	in with localDefs;
 stdenv.mkDerivation rec {
 	name = "ldcpp-"+version;