4e9175965c
- clientsession: updated to version 0.7.4.3 - data-default: updated to version 0.4.0 - hoogle: updated to version 4.2.11 - pandoc: updated to version 1.9.2 - yesod-core: updated to version 1.0.0.1 - yesod-form: updated to version 1.0.0.1 - yesod-static: updated to version 1.0.0.1 svn path=/nixpkgs/trunk/; revision=33636
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.11";
|
|
sha256 = "0m708qlj3q8s9vywg51gj7bwwasz5nxqxqhqh8f0k96iawqd9gid";
|
|
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 ];
|
|
};
|
|
})
|