2012-05-03 08:23:57 +01:00
|
|
|
{ cabal, hashable, unorderedContainers }:
|
2012-01-19 14:44:33 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "vault";
|
2012-08-23 16:41:47 +01:00
|
|
|
version = "0.2.0.1";
|
|
|
|
sha256 = "027wgbnmdnp98f0wvc9xsfh175n7rq8m2j9i7j1c5vxwgi61dqxq";
|
2012-05-03 08:23:57 +01:00
|
|
|
buildDepends = [ hashable unorderedContainers ];
|
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;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-01-19 14:44:33 +00:00
|
|
|
};
|
|
|
|
})
|