2012-05-03 08:23:57 +01:00
|
|
|
{ cabal, hashable, unorderedContainers }:
|
2012-01-19 14:44:33 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "vault";
|
2013-12-10 19:45:19 +00:00
|
|
|
version = "0.3.0.3";
|
|
|
|
sha256 = "0wpj73jbwgcva1hfjc0bpf9l3lfc3iwdz70m29dh1785wvzxhsh5";
|
2012-05-03 08:23:57 +01:00
|
|
|
buildDepends = [ hashable unorderedContainers ];
|
2013-09-09 09:20:27 +01:00
|
|
|
jailbreak = true;
|
2012-01-19 14:44:33 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/HeinrichApfelmus/vault";
|
2012-05-03 08:23:57 +01:00
|
|
|
description = "a persistent store for values of arbitrary types";
|
2012-01-19 14:44:33 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-01-19 14:44:33 +00:00
|
|
|
};
|
|
|
|
})
|