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