d44e55866a
- cabal2nix: updated to version 1.30 - cmdargs: updated to version 0.9.5 - derive: updated to version 2.5.6 - hlint: updated to version 1.8.25 - io-choice: added version 0.0.1 svn path=/nixpkgs/trunk/; revision=33411
25 lines
786 B
Nix
25 lines
786 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;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|