summary refs log tree commit diff
path: root/pkgs/lib/strings-with-deps.nix
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2007-08-28 23:29:23 +0000
committerMichael Raskin <7c6f434c@mail.ru>2007-08-28 23:29:23 +0000
commit28784956a0c01214ea6987b12ef16833a91ba5a1 (patch)
tree5d6bb5bac886a2ed54776ec3c7a5550ba867a09c /pkgs/lib/strings-with-deps.nix
parentc263b309e1ca3b099b424dcd30f47e7bb74d6503 (diff)
downloadnixpkgs-28784956a0c01214ea6987b12ef16833a91ba5a1.tar
nixpkgs-28784956a0c01214ea6987b12ef16833a91ba5a1.tar.gz
nixpkgs-28784956a0c01214ea6987b12ef16833a91ba5a1.tar.bz2
nixpkgs-28784956a0c01214ea6987b12ef16833a91ba5a1.tar.lz
nixpkgs-28784956a0c01214ea6987b12ef16833a91ba5a1.tar.xz
nixpkgs-28784956a0c01214ea6987b12ef16833a91ba5a1.tar.zst
nixpkgs-28784956a0c01214ea6987b12ef16833a91ba5a1.zip
Added function for defining just a bundle of dependencies.
svn path=/nixpkgs/trunk/; revision=9216
Diffstat (limited to 'pkgs/lib/strings-with-deps.nix')
-rw-r--r--pkgs/lib/strings-with-deps.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/lib/strings-with-deps.nix b/pkgs/lib/strings-with-deps.nix
index 5f6cafaa67a..e5521eff642 100644
--- a/pkgs/lib/strings-with-deps.nix
+++ b/pkgs/lib/strings-with-deps.nix
@@ -45,4 +45,5 @@ rec {
 	
 	noDepEntry = text : {inherit text;};
 	FullDepEntry = text : deps: {inherit text args;};
+	PackEntry = deps: {inherit deps; text="";};
 }