diff --git a/pkgs/development/tools/haskell/keter/default.nix b/pkgs/development/tools/haskell/keter/default.nix index c3f242bc434a..53e2c5a74194 100644 --- a/pkgs/development/tools/haskell/keter/default.nix +++ b/pkgs/development/tools/haskell/keter/default.nix @@ -1,25 +1,27 @@ { cabal, aeson, async, attoparsec, blazeBuilder, caseInsensitive -, conduit, dataDefault, filepath, fsnotify, httpConduit -, httpReverseProxy, httpTypes, liftedBase, mtl, network -, networkConduit, networkConduitTls, random, regexTdfa, stm -, systemFileio, systemFilepath, tar, text, time, transformers -, unixCompat, unixProcessConduit, unorderedContainers, vector, wai -, waiAppStatic, waiExtra, warp, warpTls, yaml, zlib +, conduit, dataDefault, filepath, fsnotify, httpClient +, httpClientConduit, httpConduit, httpReverseProxy, httpTypes +, liftedBase, mtl, network, networkConduit, networkConduitTls +, random, regexTdfa, stm, systemFileio, systemFilepath, tar, text +, time, transformers, unixCompat, unixProcessConduit +, unorderedContainers, vector, wai, waiAppStatic, waiExtra, warp +, warpTls, yaml, zlib }: cabal.mkDerivation (self: { pname = "keter"; - version = "1.0.1.2"; - sha256 = "1rk0sf6riyb6r1sz0jkvwwj1yyxwjxgafpidp9rqwm8wnqyx6hh8"; + version = "1.1.0.1"; + sha256 = "04hvwfs1dskaxl1fw29lf52389hy1yr3hwd05bl294zgfh995i0s"; isLibrary = true; isExecutable = true; buildDepends = [ aeson async attoparsec blazeBuilder caseInsensitive conduit - dataDefault filepath fsnotify httpConduit httpReverseProxy - httpTypes liftedBase mtl network networkConduit networkConduitTls - random regexTdfa stm systemFileio systemFilepath tar text time - transformers unixCompat unixProcessConduit unorderedContainers - vector wai waiAppStatic waiExtra warp warpTls yaml zlib + dataDefault filepath fsnotify httpClient httpClientConduit + httpConduit httpReverseProxy httpTypes liftedBase mtl network + networkConduit networkConduitTls random regexTdfa stm systemFileio + systemFilepath tar text time transformers unixCompat + unixProcessConduit unorderedContainers vector wai waiAppStatic + waiExtra warp warpTls yaml zlib ]; meta = { homepage = "http://www.yesodweb.com/";