1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/http-kit/default.nix
2014-04-24 13:06:01 -04:00

17 lines
485 B
Nix

{ cabal, caseInsensitive, hspec, httpTypes, QuickCheck
, quickcheckInstances
}:
cabal.mkDerivation (self: {
pname = "http-kit";
version = "0.2.0";
sha256 = "0pwcaf52abyjy3jknb7q18j50qd7arz7ck8xffbv9pbp0z7lfd6n";
buildDepends = [ caseInsensitive httpTypes ];
testDepends = [ hspec httpTypes QuickCheck quickcheckInstances ];
meta = {
description = "A low-level HTTP library";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})