lib.isDerivation: Simplify
This commit is contained in:
parent
74be820bb6
commit
3ddac7a41a
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ rec {
|
|||
isDerivation "foobar"
|
||||
=> false
|
||||
*/
|
||||
isDerivation = x: isAttrs x && x ? type && x.type == "derivation";
|
||||
isDerivation = x: x.type or null == "derivation";
|
||||
|
||||
/* Converts a store path to a fake derivation. */
|
||||
toDerivation = path:
|
||||
|
|
Loading…
Reference in a new issue