a30df95691
This change brings support for building and running the regressions test suites.
21 lines
628 B
Nix
21 lines
628 B
Nix
{ cabal, httpdShed, HUnit, mtl, network, parsec, split
|
|
, testFramework, testFrameworkHunit
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HTTP";
|
|
version = "4000.2.2";
|
|
sha256 = "0qrr9wdj25sdfxifppmw0w14g8skpgf42ic4iqcqylxxzfa8v7vh";
|
|
buildDepends = [ mtl network parsec ];
|
|
testDepends = [
|
|
httpdShed HUnit network split testFramework testFrameworkHunit
|
|
];
|
|
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 ];
|
|
};
|
|
})
|