From 50006193779a8bfc288153016e8ac03ccb3f8203 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 22 Nov 2012 16:59:32 +0100 Subject: [PATCH] haskell-SHA: update to version 1.6.1 --- pkgs/development/libraries/haskell/SHA/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/haskell/SHA/default.nix b/pkgs/development/libraries/haskell/SHA/default.nix index ea353c638038..343412700842 100644 --- a/pkgs/development/libraries/haskell/SHA/default.nix +++ b/pkgs/development/libraries/haskell/SHA/default.nix @@ -1,16 +1,12 @@ -{ cabal, binary, QuickCheck, testFramework -, testFrameworkQuickcheck2 -}: +{ cabal, binary }: cabal.mkDerivation (self: { pname = "SHA"; - version = "1.6.0"; - sha256 = "0i5x2irk08yr4p428wyqvdysz22jqc3q5qn08wc38pw2xhmc0zzk"; + version = "1.6.1"; + sha256 = "1v3a2skkbr64y7x1aqpq1qz03isc42l9hd1viqcsv4qlld595fgx"; isLibrary = true; isExecutable = true; - buildDepends = [ - binary QuickCheck testFramework testFrameworkQuickcheck2 - ]; + buildDepends = [ binary ]; meta = { description = "Implementations of the SHA suite of message digest functions"; license = self.stdenv.lib.licenses.bsd3;