Updated Haskell packages.

- 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
This commit is contained in:
Peter Simons 2012-05-03 07:23:57 +00:00
parent acbd97ed2e
commit 8b8ab3e977
3 changed files with 10 additions and 6 deletions

View File

@ -4,8 +4,8 @@
cabal.mkDerivation (self: {
pname = "reactive-banana";
version = "0.5.0.2";
sha256 = "10391b6vwgp5harzmiji66qs4zc5qipagak1mm2j8njhbqi8z0rb";
version = "0.5.0.3";
sha256 = "0j60g7k0xrq66m8g8fd9fdrpbnz2jbgqxnmbz1rfi5bvnrkhv10v";
buildDepends = [
fclabels hashable QuickCheck transformers unorderedContainers vault
];

View File

@ -1,12 +1,13 @@
{ cabal }:
{ cabal, hashable, unorderedContainers }:
cabal.mkDerivation (self: {
pname = "vault";
version = "0.1.0.0";
sha256 = "02gki0g9mwmvvizxhk6myfg3dmlqpcjjiz5c8693a060hkr0grqq";
version = "0.2.0.0";
sha256 = "1hv87kvi2bwf9ff8mhjzdf8rvqhk1xpschzs1x3swadj1kc9f1sv";
buildDepends = [ hashable unorderedContainers ];
meta = {
homepage = "https://github.com/HeinrichApfelmus/vault";
description = "a typed, persistent store for values of arbitrary types";
description = "a persistent store for values of arbitrary types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];

View File

@ -9,6 +9,9 @@ cabal.mkDerivation (self: {
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";