From 37440d740c494a807521eea46941b3fbcde42b2c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 21 Aug 2013 11:52:00 +0200 Subject: [PATCH] haskell-hoogle: update to version 4.2.19 --- .../libraries/haskell/hoogle/default.nix | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/haskell/hoogle/default.nix b/pkgs/development/libraries/haskell/hoogle/default.nix index 1e722a186dc4..dfca21b1ce37 100644 --- a/pkgs/development/libraries/haskell/hoogle/default.nix +++ b/pkgs/development/libraries/haskell/hoogle/default.nix @@ -1,18 +1,23 @@ -{ cabal, binary, blazeBuilder, Cabal, caseInsensitive, cmdargs -, conduit, filepath, haskellSrcExts, httpTypes, parsec, random -, safe, tagsoup, time, transformers, uniplate, wai, warp +{ cabal, aeson, binary, blazeBuilder, Cabal, caseInsensitive +, cmdargs, conduit, deepseq, filepath, haskellSrcExts, hspec +, hspecExpectations, httpTypes, HUnit, parsec, random, safe +, systemFileio, tagsoup, text, time, transformers, uniplate, wai +, warp }: cabal.mkDerivation (self: { pname = "hoogle"; - version = "4.2.16"; - sha256 = "1hamwqhndrkajm4xvxxfhr2rnlmf3z2ysyfxx3y6d24jawjyqf8a"; + version = "4.2.19"; + sha256 = "0mfmb3ky93gicwd1i4n3xfhlr3y6zgc4dv2nrilrr9l0kfka37f8"; isLibrary = true; isExecutable = true; buildDepends = [ - binary blazeBuilder Cabal caseInsensitive cmdargs conduit filepath - haskellSrcExts httpTypes parsec random safe tagsoup time - transformers uniplate wai warp + aeson binary blazeBuilder Cabal caseInsensitive cmdargs conduit + deepseq filepath haskellSrcExts httpTypes parsec random safe + tagsoup text time transformers uniplate wai warp + ]; + testDepends = [ + conduit hspec hspecExpectations HUnit systemFileio transformers ]; meta = { homepage = "http://www.haskell.org/hoogle/";