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: { cabal.mkDerivation (self: {
pname = "acid-state"; pname = "acid-state";
version = "0.8.3"; version = "0.8.3";
sha256 = "1n7vafw3jz7kmlp5jqn1wv0ip2rcbyfx0cdi2m1a2lvpi6dh97gc"; sha256 = "1n7vafw3jz7kmlp5jqn1wv0ip2rcbyfx0cdi2m1a2lvpi6dh97gc";
isLibrary = true;
isExecutable = true;
buildDepends = [ buildDepends = [
cereal safecopy stm extensibleExceptions mtl network cereal extensibleExceptions filepath mtl network safecopy stm
]; ];
meta = { meta = {
homepage = "http://acid-state.seize.it/"; 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; license = self.stdenv.lib.licenses.publicDomain;
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;
maintainers = [
];
}; };
}) })

View File

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