New Haskell library: haskell-acid-state

This commit is contained in:
Rickard Nilsson 2013-04-19 07:09:12 +02:00
parent 8a3f6e8e76
commit 6e8404a7cb
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ cabal, cereal, safecopy, stm, extensibleExceptions, mtl, network
}:
cabal.mkDerivation (self: {
pname = "acid-state";
version = "0.8.3";
sha256 = "1n7vafw3jz7kmlp5jqn1wv0ip2rcbyfx0cdi2m1a2lvpi6dh97gc";
isLibrary = true;
isExecutable = true;
buildDepends = [
cereal safecopy stm extensibleExceptions mtl network
];
meta = {
homepage = "http://acid-state.seize.it/";
description = "Add ACID guarantees to any serializable Haskell data structure.";
license = self.stdenv.lib.licenses.publicDomain;
platforms = self.ghc.meta.platforms;
maintainers = [
];
};
})

View File

@ -440,6 +440,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
# Haskell libraries.
acidState = callPackage ../development/libraries/haskell/acid-state {};
Agda = callPackage ../development/libraries/haskell/Agda {};
accelerate = callPackage ../development/libraries/haskell/accelerate {};