ghc: add missing meta data

`haskellCompilerName` in cabal2nix and hence ghc 8.10.2 and 8.6.5
"-binary" were not working correctly in this context.
This commit is contained in:
Guillaume Bouchard 2021-05-31 00:26:03 +02:00 committed by sternenseemann
parent b401b43209
commit 81c8d158a8
2 changed files with 6 additions and 0 deletions

View File

@ -212,6 +212,9 @@ stdenv.mkDerivation rec {
passthru = {
targetPrefix = "";
enableShared = true;
# Our Cabal compiler name
haskellCompilerName = "ghc-${version}";
};
meta = rec {

View File

@ -171,6 +171,9 @@ stdenv.mkDerivation rec {
passthru = {
targetPrefix = "";
enableShared = true;
# Our Cabal compiler name
haskellCompilerName = "ghc-${version}";
};
meta = rec {