19 lines
612 B
Nix
19 lines
612 B
Nix
{ cabal, connection, dataDefault, hspec, httpClient, httpTypes
|
|
, network, tls
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "http-client-tls";
|
|
version = "0.2.0.3";
|
|
sha256 = "0v8zbwlvdmkap5qbw9aw75krvw8j4q90fn301al13azzgjp71gmb";
|
|
buildDepends = [ connection dataDefault httpClient network tls ];
|
|
testDepends = [ hspec httpClient httpTypes ];
|
|
doCheck = false;
|
|
meta = {
|
|
homepage = "https://github.com/snoyberg/http-client";
|
|
description = "http-client backend using the connection package and tls library";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|