haskellPackages.cryptohash-sha256: make sure hydraPlatforms is populated
This commit is contained in:
parent
3efe1b4b45
commit
64a3ff66f6
1 changed files with 7 additions and 1 deletions
|
@ -796,7 +796,13 @@ self: super: {
|
|||
|
||||
# https://github.com/haskell-hvr/cryptohash-sha256/issues/11
|
||||
# Jailbreak is necessary to break out of tasty < 1.x dependency.
|
||||
cryptohash-sha256 = markUnbroken (doJailbreak super.cryptohash-sha256);
|
||||
# hackage2nix generates this as a broken package due to the (fake) dependency
|
||||
# missing from hackage, so we need to fix the meta attribute set.
|
||||
cryptohash-sha256 = overrideCabal super.cryptohash-sha256 (drv: {
|
||||
jailbreak = true;
|
||||
broken = false;
|
||||
hydraPlatforms = pkgs.lib.platforms.all;
|
||||
});
|
||||
|
||||
# The test suite has all kinds of out-dated dependencies, so it feels easier
|
||||
# to just disable it.
|
||||
|
|
Loading…
Reference in a new issue