3
0
Fork 0
forked from mirrors/nixpkgs

buildEnv: Allow setting meta attributes

This commit is contained in:
Tuomas Tynkkynen 2015-11-29 19:12:39 +02:00
parent 3209550131
commit 74c09a6e64

View file

@ -35,10 +35,11 @@
buildInputs ? []
, passthru ? {}
, meta ? {}
}:
runCommand name
rec { inherit manifest ignoreCollisions passthru pathsToLink extraPrefix postBuild buildInputs;
rec { inherit manifest ignoreCollisions passthru meta pathsToLink extraPrefix postBuild buildInputs;
pkgs = builtins.toJSON (map (drv: {
paths =
[ drv ]