2013-08-21 10:52:00 +01:00
|
|
|
{ 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
|
2012-03-25 19:22:20 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hoogle";
|
2013-10-02 19:02:10 +01:00
|
|
|
version = "4.2.23";
|
|
|
|
sha256 = "1ykjf0w6c3pzsrzdhxs53nxj84aj2px3gpfc8f53dmgqv3wkyii7";
|
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
|
|
|
|
deepseq filepath haskellSrcExts httpTypes parsec random safe
|
|
|
|
tagsoup text time transformers uniplate wai warp
|
|
|
|
];
|
|
|
|
testDepends = [
|
|
|
|
conduit hspec hspecExpectations HUnit systemFileio transformers
|
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
|
|
|
};
|
|
|
|
})
|