From 75d4b64966161d8cec60b43dba6f5310daa5feae Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 12 Dec 2014 09:49:58 +0100 Subject: [PATCH] haskell-jwt: update to version 0.5.0 --- .../libraries/haskell/jwt/default.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/haskell/jwt/default.nix b/pkgs/development/libraries/haskell/jwt/default.nix index 27eb104f4df..400bd6c9e9d 100644 --- a/pkgs/development/libraries/haskell/jwt/default.nix +++ b/pkgs/development/libraries/haskell/jwt/default.nix @@ -2,22 +2,24 @@ { cabal, aeson, base64Bytestring, cryptohash, dataDefault , httpTypes, HUnit, network, networkUri, QuickCheck, scientific -, tasty, tastyHunit, tastyQuickcheck, tastyTh, text, time -, unorderedContainers +, semigroups, tasty, tastyHunit, tastyQuickcheck, tastyTh, text +, time, unorderedContainers, vector }: cabal.mkDerivation (self: { pname = "jwt"; - version = "0.4.2"; - sha256 = "167qm37y5f3d05spr0z2jwkbm2sszz3khs6zd1p0az5q4nhq295w"; + version = "0.5.0"; + sha256 = "0445biw5rj4plbz4nbmzrn446dfsjnggzrrcn1m292g3dqp6gzgh"; buildDepends = [ aeson base64Bytestring cryptohash dataDefault httpTypes network - networkUri scientific text time unorderedContainers + networkUri scientific semigroups text time unorderedContainers + vector ]; testDepends = [ aeson base64Bytestring cryptohash dataDefault httpTypes HUnit - network networkUri QuickCheck scientific tasty tastyHunit - tastyQuickcheck tastyTh text time unorderedContainers + network networkUri QuickCheck scientific semigroups tasty + tastyHunit tastyQuickcheck tastyTh text time unorderedContainers + vector ]; meta = { homepage = "https://bitbucket.org/ssaasen/haskell-jwt";