Add a test for ‘nix-env --set-flag active ...’

This commit is contained in:
Eelco Dolstra 2012-12-04 14:30:34 +01:00
parent 5ad89398d1
commit 2d5e8e267b
3 changed files with 11 additions and 3 deletions

View file

@ -13,7 +13,7 @@ derivation {
# !!! grmbl, need structured data for passing this in a clean way.
derivations =
map (d:
[ (if d.meta.active or true then "1" else "0")
[ (d.meta.active or "true")
(d.meta.priority or 5)
(builtins.length d.outputs)
] ++ map (output: builtins.getAttr output d) d.outputs)