nixpkgs/pkgs/development/libraries/haskell/wai/default.nix

20 lines
568 B
Nix
Raw Normal View History

{ cabal, blazeBuilder, conduit, httpTypes, network, text
, transformers, vault
}:
cabal.mkDerivation (self: {
pname = "wai";
version = "1.2.0.2";
sha256 = "07h0znwlnfpikw9zxk7cxnyvsgqyix7lv8rylxzj259ylwfpk9fp";
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 ];
};
})