nixpkgs/pkgs/development/libraries/haskell/acid-state/default.nix
2013-10-02 18:51:31 +02:00

19 lines
556 B
Nix

{ cabal, cereal, extensibleExceptions, filepath, mtl, network
, safecopy, stm
}:
cabal.mkDerivation (self: {
pname = "acid-state";
version = "0.12.1";
sha256 = "0smqhj4layckdsm8xjz1rwgpcqwm5xj2vr8g4i463vgq776fl0q6";
buildDepends = [
cereal extensibleExceptions filepath mtl network safecopy stm
];
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;
};
})