8b8ab3e977
- reactive-banana: updated to version 0.5.0.3 - vault: updated to version 0.2.0.0 - wai: patched to support recent versions of the vault library svn path=/nixpkgs/trunk/; revision=33974
23 lines
639 B
Nix
23 lines
639 B
Nix
{ cabal, blazeBuilder, conduit, httpTypes, network, text
|
|
, transformers, vault
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "wai";
|
|
version = "1.2.0.1";
|
|
sha256 = "00f95r1g2s689s1b0div28v7dnjiqz01d66acz77acp28cm0bnmc";
|
|
buildDepends = [
|
|
blazeBuilder conduit httpTypes network text transformers vault
|
|
];
|
|
patchPhase = ''
|
|
sed -i -e 's|, vault.*|, vault|' wai.cabal
|
|
'';
|
|
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 ];
|
|
};
|
|
})
|