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
16 lines
524 B
Nix
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 ];
|
|
};
|
|
})
|