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-12-23 19:14:10 +00:00
|
|
|
version = "0.2.0.4";
|
|
|
|
sha256 = "1a63rarksp4waj64b9kv8q77wbhdnsnxahkixl1klp25hkp8aan3";
|
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;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2012-01-19 14:44:33 +00:00
|
|
|
};
|
|
|
|
})
|