haskell-haddock: added version 2.9.3
svn path=/nixpkgs/trunk/; revision=29572
This commit is contained in:
parent
3277d89fcf
commit
ec549646da
21
pkgs/development/tools/documentation/haddock/2.9.3.nix
Normal file
21
pkgs/development/tools/documentation/haddock/2.9.3.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ cabal, alex, ghcPaths, happy, xhtml }:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "haddock";
|
||||||
|
version = "2.9.3";
|
||||||
|
sha256 = "0r3yp5s7qv9hmwwfz8rxbwj39qpysgyg53ka4alaxnfma0a96iyj";
|
||||||
|
isLibrary = true;
|
||||||
|
isExecutable = true;
|
||||||
|
buildDepends = [ ghcPaths xhtml ];
|
||||||
|
buildTools = [ alex happy ];
|
||||||
|
meta = {
|
||||||
|
homepage = "http://www.haskell.org/haddock/";
|
||||||
|
description = "A documentation-generation tool for Haskell libraries";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
maintainers = [
|
||||||
|
self.stdenv.lib.maintainers.andres
|
||||||
|
self.stdenv.lib.maintainers.simons
|
||||||
|
];
|
||||||
|
};
|
||||||
|
})
|
@ -1369,6 +1369,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||||||
haddock_2_4_2 = callPackage ../development/tools/documentation/haddock/2.4.2.nix {};
|
haddock_2_4_2 = callPackage ../development/tools/documentation/haddock/2.4.2.nix {};
|
||||||
haddock_2_7_2 = callPackage ../development/tools/documentation/haddock/2.7.2.nix {};
|
haddock_2_7_2 = callPackage ../development/tools/documentation/haddock/2.7.2.nix {};
|
||||||
haddock_2_9_2 = callPackage ../development/tools/documentation/haddock/2.9.2.nix {};
|
haddock_2_9_2 = callPackage ../development/tools/documentation/haddock/2.9.2.nix {};
|
||||||
|
haddock_2_9_3 = callPackage ../development/tools/documentation/haddock/2.9.3.nix {};
|
||||||
haddock = self.haddock_2_7_2;
|
haddock = self.haddock_2_7_2;
|
||||||
|
|
||||||
happy_1_18_4 = callPackage ../development/tools/parsing/happy/1.18.4.nix {};
|
happy_1_18_4 = callPackage ../development/tools/parsing/happy/1.18.4.nix {};
|
||||||
|
Loading…
Reference in New Issue
Block a user