1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-22 06:05:13 +00:00
nixpkgs/pkgs/development/libraries/haskell/wai/default.nix
2014-03-11 13:50:50 +01:00

20 lines
566 B
Nix

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