3
0
Fork 0
forked from mirrors/nixpkgs

Add Haskell package: haskell-docs

This commit is contained in:
Thomas Strobel 2014-08-14 00:55:49 +02:00
parent cdabab5b28
commit aab5ab8711
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ cabal, aeson, Cabal, filepath, ghcPaths, haddock, monadLoops
, text, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "haskell-docs";
version = "4.2.2";
sha256 = "0w52kzwjzd5jl8v55rjy5550cy2fcyj9j5b7b33vbwjyh06gfrk1";
isLibrary = true;
isExecutable = true;
buildDepends = [
aeson Cabal filepath ghcPaths haddock monadLoops text
unorderedContainers
];
doCheck = false;
meta = {
homepage = "http://github.com/chrisdone/haskell-docs";
description = "A program to find and display the docs and type of a name";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2854,6 +2854,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
happyMeta = callPackage ../development/tools/haskell/happy-meta {};
haskellDocs = callPackage ../development/tools/haskell/haskell-docs {};
haskdogs = callPackage ../development/tools/haskell/haskdogs {};
hasktags = callPackage ../development/tools/haskell/hasktags {};