Merge pull request #214556 from peti/t/top-level-bindings-for-haskell-tools

alex, happy, hscolour: add top-level executable-only bindings
This commit is contained in:
Peter Simons 2023-02-04 16:52:13 +01:00 committed by GitHub
commit c0c4f25067
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14774,6 +14774,12 @@ with pkgs;
then haskell.compiler.native-bignum.ghc92
else haskell.compiler.ghc92);
alex = haskell.lib.compose.justStaticExecutables haskellPackages.alex;
happy = haskell.lib.compose.justStaticExecutables haskellPackages.happy;
hscolour = haskell.lib.compose.justStaticExecutables haskellPackages.hscolour;
cabal-install = haskell.lib.compose.justStaticExecutables haskellPackages.cabal-install;
stack = haskell.lib.compose.justStaticExecutables haskellPackages.stack;