haskellPackages.http-client-restricted: pin to 0.0.4 for stackage compat

main
sternenseemann 2 years ago
parent f7f47b9b91
commit 9b4f621741
  1. 2
      pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
  2. 17
      pkgs/development/haskell-modules/hackage-packages.nix

@ -134,6 +134,8 @@ default-package-overrides:
# On the recommendation of hnix author:
# https://github.com/NixOS/nixpkgs/pull/154461#issuecomment-1015511883
- hnix < 0.15
# needs http-client >= 0.7.11 which isn't part of Stackage LTS 18
- http-client-restricted < 0.0.5
extra-packages:
- base16-bytestring < 1 # required for cabal-install etc.

@ -148411,6 +148411,22 @@ self: {
}) {};
"http-client-restricted" = callPackage
({ mkDerivation, base, connection, data-default, http-client
, http-client-tls, network, network-bsd, utf8-string
}:
mkDerivation {
pname = "http-client-restricted";
version = "0.0.4";
sha256 = "0jljvfjbdjxj61m6nznysbh9y7nszrzmdv0i8ndxgshnmc19q9h1";
libraryHaskellDepends = [
base connection data-default http-client http-client-tls network
network-bsd utf8-string
];
description = "restricting the servers that http-client will use";
license = lib.licenses.mit;
}) {};
"http-client-restricted_0_0_5" = callPackage
({ mkDerivation, base, connection, data-default, http-client
, http-client-tls, network, network-bsd, utf8-string
}:
@ -148424,6 +148440,7 @@ self: {
];
description = "restricting the servers that http-client will use";
license = lib.licenses.mit;
hydraPlatforms = lib.platforms.none;
}) {};
"http-client-session" = callPackage

Loading…
Cancel
Save