nixpkgs/pkgs/development/libraries/haskell/http-common/default.nix
2014-01-17 11:59:16 +01:00

20 lines
637 B
Nix

{ cabal, base64Bytestring, blazeBuilder, caseInsensitive, mtl
, network, text, transformers, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "http-common";
version = "0.7.1.1";
sha256 = "1a0szaqs1halrv4kx57g2hd4vcdhks7pfal0hyq19af2pncaz1h8";
buildDepends = [
base64Bytestring blazeBuilder caseInsensitive mtl network text
transformers unorderedContainers
];
meta = {
homepage = "http://research.operationaldynamics.com/projects/http-streams/";
description = "Common types for HTTP clients and servers";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})