mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
28a0367f9e
Setup: At least the following dependencies are missing: case-insensitive ==0.4.*, conduit >=0.4 && <0.6, http-types >=0.6 && <0.8, wai >=1.2 && <1.4
22 lines
647 B
Nix
22 lines
647 B
Nix
{ cabal, httpdShed, HUnit, mtl, network, parsec, split
|
|
, testFramework, testFrameworkHunit
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HTTP";
|
|
version = "4000.2.1";
|
|
sha256 = "01076rk7ly5228pszn54x4nqc6rqq1xw11ij9ajvhzf419islh0a";
|
|
buildDepends = [ mtl network parsec ];
|
|
testDepends = [
|
|
httpdShed HUnit network split testFramework testFrameworkHunit
|
|
];
|
|
doCheck = false;
|
|
meta = {
|
|
homepage = "https://github.com/haskell/HTTP";
|
|
description = "A library for client-side HTTP";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|