haskellPackages.http-client-restricted: pin to 0.0.4 for stackage compat
This commit is contained in:
parent
f7f47b9b91
commit
9b4f621741
2 changed files with 19 additions and 0 deletions
|
@ -134,6 +134,8 @@ default-package-overrides:
|
||||||
# On the recommendation of hnix author:
|
# On the recommendation of hnix author:
|
||||||
# https://github.com/NixOS/nixpkgs/pull/154461#issuecomment-1015511883
|
# https://github.com/NixOS/nixpkgs/pull/154461#issuecomment-1015511883
|
||||||
- hnix < 0.15
|
- 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:
|
extra-packages:
|
||||||
- base16-bytestring < 1 # required for cabal-install etc.
|
- base16-bytestring < 1 # required for cabal-install etc.
|
||||||
|
|
|
@ -148411,6 +148411,22 @@ self: {
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"http-client-restricted" = callPackage
|
"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
|
({ mkDerivation, base, connection, data-default, http-client
|
||||||
, http-client-tls, network, network-bsd, utf8-string
|
, http-client-tls, network, network-bsd, utf8-string
|
||||||
}:
|
}:
|
||||||
|
@ -148424,6 +148440,7 @@ self: {
|
||||||
];
|
];
|
||||||
description = "restricting the servers that http-client will use";
|
description = "restricting the servers that http-client will use";
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
|
hydraPlatforms = lib.platforms.none;
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"http-client-session" = callPackage
|
"http-client-session" = callPackage
|
||||||
|
|
Loading…
Reference in a new issue