haskell.packages.ghc944.fourmolu_0_11_0_0: unbreak

This commit is contained in:
Dennis Gosnell 2023-03-30 13:33:10 +09:00
parent dc532b18f2
commit cd111f458f
No known key found for this signature in database
GPG key ID: 462E0C03D11422F4
2 changed files with 3 additions and 3 deletions

View file

@ -221,7 +221,7 @@ in {
ormolu = doDistribute self.ormolu_0_5_3_0;
fourmolu = overrideCabal (drv: {
libraryHaskellDepends = drv.libraryHaskellDepends ++ [ self.file-embed ];
}) (disableCabalFlag "fixity-th" super.fourmolu_0_10_1_0);
}) (disableCabalFlag "fixity-th" super.fourmolu_0_11_0_0);
# Apply workaround for Cabal 3.8 bug https://github.com/haskell/cabal/issues/8455
# by making `pkg-config --static` happy. Note: Cabal 3.9 is also affected, so

View file

@ -979,11 +979,11 @@ self: super: builtins.intersectAttrs super {
}) super.fourmolu;
# Test suite wants to run main executable
fourmolu_0_10_1_0 = overrideCabal (drv: {
fourmolu_0_11_0_0 = overrideCabal (drv: {
preCheck = drv.preCheck or "" + ''
export PATH="$PWD/dist/build/fourmolu:$PATH"
'';
}) super.fourmolu_0_10_1_0;
}) super.fourmolu_0_11_0_0;
# Test suite needs to execute 'disco' binary
disco = overrideCabal (drv: {