2012-05-03 09:23:57 +02:00
|
|
|
{ cabal, hashable, unorderedContainers }:
|
2012-01-19 15:44:33 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "vault";
|
2012-05-03 09:23:57 +02:00
|
|
|
version = "0.2.0.0";
|
|
|
|
sha256 = "1hv87kvi2bwf9ff8mhjzdf8rvqhk1xpschzs1x3swadj1kc9f1sv";
|
|
|
|
buildDepends = [ hashable unorderedContainers ];
|
2012-01-19 15:44:33 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/HeinrichApfelmus/vault";
|
2012-05-03 09:23:57 +02:00
|
|
|
description = "a persistent store for values of arbitrary types";
|
2012-01-19 15:44:33 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-01-19 15:44:33 +01:00
|
|
|
};
|
|
|
|
})
|