haskellPackages.cabal2nix-unstable: Use justStaticExecutables

This commit is contained in:
Malte Brandy 2021-06-05 16:52:14 +02:00
parent eede07de2c
commit 51f2030430
No known key found for this signature in database
GPG Key ID: 226A2D41EF5378C9

View File

@ -819,4 +819,8 @@ self: super: builtins.intersectAttrs super {
# itself causing an infinite recursion at evaluation
# time
random = dontCheck super.random;
# Since this package is primarily used by nixpkgs maintainers and is probably
# not used to link against by anyone, we can make its closure smaller.
cabal2nix-unstable = justStaticExecutables super.cabal2nix-unstable;
}