From 9d4cfd51d5493b3386c35880666d6f91f97b87ab Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 17 Apr 2014 21:13:22 +0200 Subject: [PATCH] haskell-simple-sendfile: update to version 0.2.14 --- .../libraries/haskell/simple-sendfile/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/haskell/simple-sendfile/default.nix b/pkgs/development/libraries/haskell/simple-sendfile/default.nix index 806feee295f..52c5fd7fe68 100644 --- a/pkgs/development/libraries/haskell/simple-sendfile/default.nix +++ b/pkgs/development/libraries/haskell/simple-sendfile/default.nix @@ -1,11 +1,15 @@ -{ cabal, conduit, hspec, HUnit, network, networkConduit }: +{ cabal, conduit, conduitExtra, hspec, HUnit, network +, networkConduit, resourcet +}: cabal.mkDerivation (self: { pname = "simple-sendfile"; - version = "0.2.13"; - sha256 = "03cgbzfhkih1ln1xb78r1hfh6zzjjj6763n9nzr9cj6bxs0fiqd3"; - buildDepends = [ network ]; - testDepends = [ conduit hspec HUnit network networkConduit ]; + version = "0.2.14"; + sha256 = "00k9cachx7y4811b71f8p468kx018hzvpvw6jgf7zmjhc9v922ni"; + buildDepends = [ network resourcet ]; + testDepends = [ + conduit conduitExtra hspec HUnit network networkConduit resourcet + ]; doCheck = false; meta = { description = "Cross platform library for the sendfile system call";