1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
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";
2013-05-30 05:01:49 -04:00
version = "1.4.0.1";
sha256 = "1d08mp7dpf8iw50yjysr5p7fc9jgdcwql943p9c11x35n2ks6z2n";
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 ];
};
})