nixpkgs/pkgs/development/libraries/haskell/wai/default.nix
2013-02-18 11:11:16 +01:00

20 lines
568 B
Nix

{ cabal, blazeBuilder, conduit, httpTypes, network, text
, transformers, vault
}:
cabal.mkDerivation (self: {
pname = "wai";
version = "1.3.0.3";
sha256 = "091qykycxfh9f1jysdjxkw4msdgxp796as3yzv9sgqsxvz58rv1n";
buildDepends = [
blazeBuilder conduit httpTypes network text transformers vault
];
meta = {
homepage = "https://github.com/yesodweb/wai";
description = "Web Application Interface";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})