From b6c7c4a142357f8fb90eef6b4beee5df749a9e4d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 19 Apr 2013 10:47:36 +0200 Subject: [PATCH] haskell-acid-state, haskell-safecopy: cosmetic updates by hackage4nix --- .../libraries/haskell/acid-state/default.nix | 11 ++++------- .../libraries/haskell/safecopy/default.nix | 12 +++--------- 2 files changed, 7 insertions(+), 16 deletions(-) diff --git a/pkgs/development/libraries/haskell/acid-state/default.nix b/pkgs/development/libraries/haskell/acid-state/default.nix index 13c3837d610f..10f222cfe105 100644 --- a/pkgs/development/libraries/haskell/acid-state/default.nix +++ b/pkgs/development/libraries/haskell/acid-state/default.nix @@ -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 = [ - ]; }; }) diff --git a/pkgs/development/libraries/haskell/safecopy/default.nix b/pkgs/development/libraries/haskell/safecopy/default.nix index e28bd5ae9066..c700ff0df3d1 100644 --- a/pkgs/development/libraries/haskell/safecopy/default.nix +++ b/pkgs/development/libraries/haskell/safecopy/default.nix @@ -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 = [ - ]; }; })