2013-04-19 09:47:36 +01:00
|
|
|
{ cabal, cereal, extensibleExceptions, filepath, mtl, network
|
|
|
|
, safecopy, stm
|
2013-04-19 06:09:12 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "acid-state";
|
2014-05-16 20:27:48 +01:00
|
|
|
version = "0.12.2";
|
|
|
|
sha256 = "0hwi2254bj84djxmah23vy3xw8binh75fsn8ac6y89rwc8i35w1f";
|
2013-04-19 06:09:12 +01:00
|
|
|
buildDepends = [
|
2013-04-19 09:47:36 +01:00
|
|
|
cereal extensibleExceptions filepath mtl network safecopy stm
|
2013-04-19 06:09:12 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://acid-state.seize.it/";
|
2013-04-19 09:47:36 +01:00
|
|
|
description = "Add ACID guarantees to any serializable Haskell data structure";
|
2013-04-19 06:09:12 +01:00
|
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|