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";