mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
* Typo.
svn path=/nixpkgs/trunk/; revision=15699
This commit is contained in:
parent
fb087d2598
commit
8d7bf1a11e
@ -21,13 +21,13 @@ rec {
|
||||
then attrByPath (tail attrPath) default (getAttr attr e)
|
||||
else default;
|
||||
|
||||
# keep compatibility for some time. will be removed soon (the name getAttr
|
||||
# should only be used for the builtins primop)
|
||||
getAttr = a : b : if isString a
|
||||
then
|
||||
# should have been called from builtins scope. Don't mind. use builtin function
|
||||
builtins.getAttr a b
|
||||
else c : builtins.trace "depreceated usage of lib.getAttr!" (attrByPath a b c);
|
||||
/* Backwards compatibility hack: lib.attrByPath used to be called
|
||||
lib.getAttr, which was confusing given that there was also a
|
||||
builtins.getAttr. Eventually we'll drop this hack and
|
||||
lib.getAttr will just be an alias for builtins.getAttr. */
|
||||
getAttr = a: b: if isString a
|
||||
then builtins.getAttr a b
|
||||
else c: builtins.trace "Deprecated use of lib.getAttr!" (attrByPath a b c);
|
||||
|
||||
|
||||
getAttrFromPath = attrPath: set:
|
||||
|
Loading…
Reference in New Issue
Block a user