1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

haskell-acid-state, haskell-safecopy: cosmetic updates by hackage4nix

This commit is contained in:
Peter Simons 2013-04-19 10:47:36 +02:00
parent 00ed85ec25
commit b6c7c4a142
2 changed files with 7 additions and 16 deletions

View file

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

View file

@ -1,20 +1,14 @@
{ cabal, cereal, text }:
{ cabal, cereal, text, time }:
cabal.mkDerivation (self: {
pname = "safecopy";
version = "0.8.2";
sha256 = "0l2kqymsxv244fahxcpxlrspk6xipz3br6j854ipbfh8b0bfvr4m";
isLibrary = true;
isExecutable = true;
buildDepends = [
cereal text
];
buildDepends = [ cereal text time ];
meta = {
homepage = "http://acid-state.seize.it/safecopy";
description = "Binary serialization with version control.";
description = "Binary serialization with version control";
license = self.stdenv.lib.licenses.publicDomain;
platforms = self.ghc.meta.platforms;
maintainers = [
];
};
})