From b409b23fa0ecea780cc194d8e648966b3bf0d46e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 2 Feb 2014 20:16:13 +0100 Subject: [PATCH] haskell-shelly: update to version 1.4.3.1 --- pkgs/development/libraries/haskell/shelly/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/haskell/shelly/default.nix b/pkgs/development/libraries/haskell/shelly/default.nix index 5a53a2f64c1d..d64070459d64 100644 --- a/pkgs/development/libraries/haskell/shelly/default.nix +++ b/pkgs/development/libraries/haskell/shelly/default.nix @@ -1,12 +1,13 @@ -{ cabal, mtl, systemFileio, systemFilepath, text, time, unixCompat +{ cabal, async, mtl, systemFileio, systemFilepath, text, time +, unixCompat }: cabal.mkDerivation (self: { pname = "shelly"; - version = "1.4.1"; - sha256 = "04yi5kc9jfcpc1rq3prypc832xgv94lrzv3i8saf1rg8a6najwbx"; + version = "1.4.3.1"; + sha256 = "04q22wprp0x075xyx6lnr8r792izvfigi4zryz2lxr5kqnzjki6r"; buildDepends = [ - mtl systemFileio systemFilepath text time unixCompat + async mtl systemFileio systemFilepath text time unixCompat ]; meta = { homepage = "https://github.com/yesodweb/Shelly.hs";