summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/wai/default.nix
blob: 50ded58f44d82e0afad4eb10a4931786f52bdfd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ cabal, blazeBuilder, hspec, httpTypes, network, text, vault }:

cabal.mkDerivation (self: {
  pname = "wai";
  version = "3.0.0.1";
  sha256 = "1f8alq4lygjdb4pzb7xm6jml3dviygk18siwfwb751va3j2fmi0v";
  buildDepends = [ blazeBuilder httpTypes network text vault ];
  testDepends = [ blazeBuilder hspec ];
  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 ];
  };
})