summary refs log tree commit diff
path: root/pkgs/tools/networking/smbfs-fuse/0.8.7.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/smbfs-fuse/0.8.7.nix')
-rw-r--r--pkgs/tools/networking/smbfs-fuse/0.8.7.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/smbfs-fuse/0.8.7.nix b/pkgs/tools/networking/smbfs-fuse/0.8.7.nix
index d93ab811438c..fa98d3d0ac6a 100644
--- a/pkgs/tools/networking/smbfs-fuse/0.8.7.nix
+++ b/pkgs/tools/networking/smbfs-fuse/0.8.7.nix
@@ -1,5 +1,5 @@
-args : with args; with builderDefs {src="";} null;
-	let localDefs = builderDefs {
+args : with args; with builderDefs;
+	let localDefs = builderDefs.meta.function {
 		src = /* put a fetchurl here */
 		fetchurl {
 			url = http://www.ricardis.tudelft.nl/~vincent/fusesmb/download/fusesmb-0.8.7.tar.gz;
@@ -14,7 +14,7 @@ args : with args; with builderDefs {src="";} null;
 		ln -fs ${samba}/lib/libsmbclient.so $out/lib/libsmbclient.so.0
 		'')
 		[ "minInit" "defEnsureDir" "doMakeInstall"];
-	} null; /* null is a terminator for sumArgs */
+	};
 	in with localDefs;
 stdenv.mkDerivation rec {
 	name = "smbfs-fuse-"+version;