summary refs log tree commit diff
path: root/pkgs/build-support/deb-package/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/build-support/deb-package/default.nix')
-rw-r--r--pkgs/build-support/deb-package/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/build-support/deb-package/default.nix b/pkgs/build-support/deb-package/default.nix
index 6a1ca8490ee..f227dd521a6 100644
--- a/pkgs/build-support/deb-package/default.nix
+++ b/pkgs/build-support/deb-package/default.nix
@@ -2,7 +2,7 @@ args : with args;
 	let 
        	localDefs = with (builderDefs.passthru.function {src="";});
 	let 
-	  checkFlag = flag : lib.getAttr [flag] false args;
+	  checkFlag = flag : lib.attrByPath [flag] false args;
 	in
 	  builderDefs.passthru.function ({
 		inherit src;
@@ -18,7 +18,7 @@ args : with args;
 		(fullDepEntry 
 		  args.Install 
 		  (["doMake"] 
-		  ++ (lib.getAttr ["extraInstallDeps"] [] args))
+		  ++ (lib.attrByPath ["extraInstallDeps"] [] args))
 		)
 		else fullDepEntry "" ["doMakeInstall"];