diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2012-01-04T12·00+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2012-01-04T12·00+0000 |
commit | a0477a458fa9fd7fbe090ff8cebcfd162c090b43 (patch) | |
tree | 2f9f3960404dc3e2964bbd31cd786d7be52192eb /corepkgs | |
parent | b79b85ad7668783391538fe2cda2e896f4ea0c8e (diff) |
* currentOutput -> outputName. "current" implies some temporal
aspect.
Diffstat (limited to 'corepkgs')
-rw-r--r-- | corepkgs/derivation.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/corepkgs/derivation.nix b/corepkgs/derivation.nix index 2e2d0002c2b8..757108be3614 100644 --- a/corepkgs/derivation.nix +++ b/corepkgs/derivation.nix @@ -18,7 +18,7 @@ let outPath = builtins.getAttr outputName strict; drvPath = strict.drvPath; type = "derivation"; - currentOutput = outputName; + inherit outputName; }; }; |