2012-03-25 20:22:20 +02:00
|
|
|
{ cabal, binary, blazeBuilder, Cabal, caseInsensitive, cmdargs
|
|
|
|
, conduit, filepath, haskellSrcExts, httpTypes, parsec, random
|
|
|
|
, safe, tagsoup, time, transformers, uniplate, wai, warp
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hoogle";
|
2012-07-16 11:22:51 +02:00
|
|
|
version = "4.2.11";
|
|
|
|
sha256 = "0m708qlj3q8s9vywg51gj7bwwasz5nxqxqhqh8f0k96iawqd9gid";
|
2012-03-25 20:22:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
binary blazeBuilder Cabal caseInsensitive cmdargs conduit filepath
|
|
|
|
haskellSrcExts httpTypes parsec random safe tagsoup time
|
|
|
|
transformers uniplate wai warp
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.haskell.org/hoogle/";
|
|
|
|
description = "Haskell API Search";
|
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-25 21:33:53 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-03-25 20:22:20 +02:00
|
|
|
};
|
|
|
|
})
|