nixpkgs/pkgs/development/libraries/haskell/vault/default.nix
Peter Simons 8b8ab3e977 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
2012-05-03 07:23:57 +00:00

16 lines
524 B
Nix

{ cabal, hashable, unorderedContainers }:
cabal.mkDerivation (self: {
pname = "vault";
version = "0.2.0.0";
sha256 = "1hv87kvi2bwf9ff8mhjzdf8rvqhk1xpschzs1x3swadj1kc9f1sv";
buildDepends = [ hashable unorderedContainers ];
meta = {
homepage = "https://github.com/HeinrichApfelmus/vault";
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 ];
};
})