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

cabal.mkDerivation (self: {
  pname = "wai";
  version = "2.1.0.3";
  sha256 = "0qprvk63fvb4rddg9h385xbd5sr5bcgkpx6fqlw01pjzmmrig1m3";
  buildDepends = [
    blazeBuilder conduit conduitExtra 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 ];
  };
})