2013-08-21 10:52:00 +01:00
|
|
|
{ cabal, aeson, binary, blazeBuilder, Cabal, caseInsensitive
|
2013-12-09 12:03:20 +00:00
|
|
|
, cmdargs, conduit, deepseq, filepath, haskellSrcExts, httpTypes
|
2014-02-24 09:11:58 +00:00
|
|
|
, parsec, QuickCheck, random, safe, shake, tagsoup, text, time
|
|
|
|
, transformers, uniplate, vector, vectorAlgorithms, wai, warp
|
2012-03-25 19:22:20 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hoogle";
|
2014-02-24 09:11:58 +00:00
|
|
|
version = "4.2.29";
|
|
|
|
sha256 = "0w4fgf0qvd5zsa7dk99vcbr2pnyyg1hl3k0zwvp5v26v1lfijzil";
|
2012-03-25 19:22:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-08-21 10:52:00 +01:00
|
|
|
aeson binary blazeBuilder Cabal caseInsensitive cmdargs conduit
|
2014-02-24 09:11:58 +00:00
|
|
|
deepseq filepath haskellSrcExts httpTypes parsec QuickCheck random
|
|
|
|
safe shake tagsoup text time transformers uniplate vector
|
|
|
|
vectorAlgorithms wai warp
|
2013-08-21 10:52:00 +01:00
|
|
|
];
|
2013-12-09 12:03:20 +00:00
|
|
|
testDepends = [ filepath ];
|
2014-01-01 23:24:07 +00:00
|
|
|
testTarget = "--test-option=--no-net";
|
2012-03-25 19:22:20 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.haskell.org/hoogle/";
|
|
|
|
description = "Haskell API Search";
|
2012-11-08 13:57:36 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2012-03-25 19:22:20 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-03-25 19:22:20 +01:00
|
|
|
};
|
|
|
|
})
|