ormolu: Fix haskellPackages overlay usage

This makes pkgs.ormolu evaluate when pkg.haskellPackages is overlayed.
Previously it would fail with a ".bin attribute missing" error.
This commit is contained in:
Ilan Joselevich
2024-09-30 16:45:35 +02:00
parent 3510b853ef
commit a80788e645
+1 -1
View File
@@ -19259,7 +19259,7 @@ with pkgs;
niv = lib.getBin (haskell.lib.compose.justStaticExecutables haskellPackages.niv);
ormolu = haskellPackages.ormolu.bin;
ormolu = lib.getBin (haskell.lib.compose.justStaticExecutables haskellPackages.ormolu);
capnproto = callPackage ../development/libraries/capnproto { };