1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-19 17:39:34 +00:00

* Preserve meta attributes from the caller.

svn path=/nixpkgs/trunk/; revision=13433
This commit is contained in:
Eelco Dolstra 2008-11-26 14:34:29 +00:00
parent 564b82630b
commit 79072e871f
4 changed files with 4 additions and 4 deletions

View file

@ -70,7 +70,7 @@ vmTools.runInLinuxImage (stdenv.mkDerivation (
done done
''; # */ ''; # */
meta = { meta = (if args ? meta then args.meta else {}) // {
description = "Build of a Deb package on ${args.diskImage.fullName} (${args.diskImage.name})"; description = "Build of a Deb package on ${args.diskImage.fullName} (${args.diskImage.name})";
}; };
} }

View file

@ -97,7 +97,7 @@ stdenv.mkDerivation (
passthru = {inherit src;}; passthru = {inherit src;};
meta = { meta = (if args ? meta then args.meta else {}) // {
description = "Build of a source distribution from a checkout"; description = "Build of a source distribution from a checkout";
}; };

View file

@ -83,7 +83,7 @@ stdenv.mkDerivation (
'' else ""; '' else "";
meta = { meta = (if args ? meta then args.meta else {}) // {
description = if doCoverageAnalysis then "Coverage analysis" else "Native Nix build on ${stdenv.system}"; description = if doCoverageAnalysis then "Coverage analysis" else "Native Nix build on ${stdenv.system}";
}; };

View file

@ -33,7 +33,7 @@ vmTools.buildRPM (
done done
''; # */ ''; # */
meta = { meta = (if args ? meta then args.meta else {}) // {
description = "Build of an RPM package on ${args.diskImage.fullName} (${args.diskImage.name})"; description = "Build of an RPM package on ${args.diskImage.fullName} (${args.diskImage.name})";
}; };
} }