mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 03:57:31 +00:00
haskell-acid-state, haskell-safecopy: cosmetic updates by hackage4nix
This commit is contained in:
parent
00ed85ec25
commit
b6c7c4a142
@ -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 = [
|
||||
];
|
||||
};
|
||||
})
|
||||
|
@ -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 = [
|
||||
];
|
||||
};
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user