mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Merge pull request #20463 from Profpatsch/with-packages-drv-naming
ghc.withPackages: amend the derviation name
This commit is contained in:
commit
0816860785
@ -47,7 +47,10 @@ let
|
|||||||
in
|
in
|
||||||
if paths == [] && !withLLVM then ghc else
|
if paths == [] && !withLLVM then ghc else
|
||||||
buildEnv {
|
buildEnv {
|
||||||
inherit (ghc) name;
|
# this makes computing paths from the name attribute impossible;
|
||||||
|
# if such a feature is needed, the real compiler name should be saved
|
||||||
|
# as a dedicated drv attribute, like `compiler-name`
|
||||||
|
name = ghc.name + "-with-packages";
|
||||||
paths = paths ++ [ghc];
|
paths = paths ++ [ghc];
|
||||||
inherit ignoreCollisions;
|
inherit ignoreCollisions;
|
||||||
postBuild = ''
|
postBuild = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user