mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-11 07:23:40 +00:00
48ce33903a
svn path=/nixpkgs/trunk/; revision=33409
24 lines
728 B
Nix
24 lines
728 B
Nix
{ cabal, binary, blazeBuilder, Cabal, caseInsensitive, cmdargs
|
|
, conduit, filepath, haskellSrcExts, httpTypes, parsec, random
|
|
, safe, tagsoup, time, transformers, uniplate, wai, warp
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hoogle";
|
|
version = "4.2.10";
|
|
sha256 = "0vb4jj9m512v476fclmjzlk725hgba8q5njx2h1xwb0a76qvj2mg";
|
|
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;
|
|
};
|
|
})
|