From e62a8e5b828c45900a3beda22728fecf7215d484 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 15 May 2014 16:19:55 +0200 Subject: [PATCH] haskell-hashable: update to version 1.2.2.0 --- .../libraries/haskell/hashable/{1.2.1.0.nix => 1.2.2.0.nix} | 4 ++-- pkgs/top-level/haskell-packages.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename pkgs/development/libraries/haskell/hashable/{1.2.1.0.nix => 1.2.2.0.nix} (87%) diff --git a/pkgs/development/libraries/haskell/hashable/1.2.1.0.nix b/pkgs/development/libraries/haskell/hashable/1.2.2.0.nix similarity index 87% rename from pkgs/development/libraries/haskell/hashable/1.2.1.0.nix rename to pkgs/development/libraries/haskell/hashable/1.2.2.0.nix index 092a3f69156..2ae7f353992 100644 --- a/pkgs/development/libraries/haskell/hashable/1.2.1.0.nix +++ b/pkgs/development/libraries/haskell/hashable/1.2.2.0.nix @@ -4,8 +4,8 @@ cabal.mkDerivation (self: { pname = "hashable"; - version = "1.2.1.0"; - sha256 = "09m1glpcxm3f6s9cwz8xzljy6j0n271cym4d9dllw5rpzrwp9h2f"; + version = "1.2.2.0"; + sha256 = "08cfm1rzhf3d8dzn0iqadfs35151ff6szhnh4bwrpxcs6sq90fh3"; buildDepends = [ text ]; testDepends = [ HUnit QuickCheck random testFramework testFrameworkHunit diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index b10bf73c592..effbda08301 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -919,8 +919,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in happstackFastCGI = callPackage ../development/libraries/haskell/happstack/happstack-fastcgi.nix {}; hashable_1_1_2_5 = callPackage ../development/libraries/haskell/hashable/1.1.2.5.nix {}; - hashable_1_2_1_0 = callPackage ../development/libraries/haskell/hashable/1.2.1.0.nix {}; - hashable = self.hashable_1_2_1_0; + hashable_1_2_2_0 = callPackage ../development/libraries/haskell/hashable/1.2.2.0.nix {}; + hashable = self.hashable_1_2_2_0; hashedStorage = callPackage ../development/libraries/haskell/hashed-storage {};