* Add stringAfter' as a synonym of fullDepEntry', with the arguments

flipped to denote what it actually does (i.e., a string fragment
  that comes *after* the named fragments).  One day we can have
  `stringBefore'.

svn path=/nixpkgs/trunk/; revision=23761
This commit is contained in:
Eelco Dolstra 2010-09-13 15:31:06 +00:00
parent ea18f17f8c
commit 2202d32006

View file

@ -73,8 +73,6 @@ rec {
fullDepEntry = text: deps: {inherit text deps;};
packEntry = deps: {inherit deps; text="";};
# Old names - don't use. Will be removed soon. There are no more occurences in nixpkgs/nixos
FullDepEntry = fullDepEntry;
PackEntry = packEntry;
stringAfter = deps: text: { inherit text deps; };
}