nixpkgs/pkgs/development/libraries/haskell/hoogle/default.nix
Peter Simons 76c096e4ea haskell-hoogle: revert update to version 4.2.12
We need a current version of http-types for this update.
2012-07-16 11:22:51 +02:00

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 ];
};
})