From 28784956a0c01214ea6987b12ef16833a91ba5a1 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 28 Aug 2007 23:29:23 +0000 Subject: [PATCH] Added function for defining just a bundle of dependencies. svn path=/nixpkgs/trunk/; revision=9216 --- pkgs/lib/strings-with-deps.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/lib/strings-with-deps.nix b/pkgs/lib/strings-with-deps.nix index 5f6cafaa67ad..e5521eff642b 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="";}; }