haddock: add version 2.11.0 and 2.12.0
This commit is contained in:
parent
b9f0b44b1a
commit
18e9e6832b
18
pkgs/development/tools/documentation/haddock/2.11.0.nix
Normal file
18
pkgs/development/tools/documentation/haddock/2.11.0.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ cabal, alex, Cabal, filepath, ghcPaths, happy, xhtml }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "haddock";
|
||||
version = "2.11.0";
|
||||
sha256 = "0a29n6y9lmk5w78f6j8s7pg0m0k3wm7bx5r2lhk7bnzkr5f7rkcd";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [ Cabal filepath 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 ];
|
||||
};
|
||||
})
|
18
pkgs/development/tools/documentation/haddock/2.12.0.nix
Normal file
18
pkgs/development/tools/documentation/haddock/2.12.0.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ cabal, alex, Cabal, deepseq, filepath, ghcPaths, happy, xhtml }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "haddock";
|
||||
version = "2.12.0";
|
||||
sha256 = "00kdmpa6vhn6x790641ln40v3pn7aj4ws6pq854n1iyg5ly3ridn";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [ Cabal deepseq filepath 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 ];
|
||||
};
|
||||
})
|
@ -145,7 +145,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
zlib = self.zlib_0_5_3_3; # 7.5 fail
|
||||
cabalInstall = self.cabalInstall_0_14_0; # 7.5 ok
|
||||
alex = self.alex_3_0_1; # 7.5 ok
|
||||
haddock = self.haddock_2_10_0; # 7.5 ok
|
||||
haddock = self.haddock_2_12_0; # 7.5 ok
|
||||
happy = self.happy_1_18_9; # 7.5 ok
|
||||
};
|
||||
|
||||
@ -1712,7 +1712,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
haddock_2_9_2 = callPackage ../development/tools/documentation/haddock/2.9.2.nix {};
|
||||
haddock_2_9_4 = callPackage ../development/tools/documentation/haddock/2.9.4.nix {};
|
||||
haddock_2_10_0 = callPackage ../development/tools/documentation/haddock/2.10.0.nix {};
|
||||
haddock = self.haddock_2_10_0;
|
||||
haddock_2_11_0 = callPackage ../development/tools/documentation/haddock/2.11.0.nix {};
|
||||
haddock_2_12_0 = callPackage ../development/tools/documentation/haddock/2.12.0.nix {};
|
||||
haddock = self.haddock_2_12_0;
|
||||
|
||||
happy_1_18_4 = callPackage ../development/tools/parsing/happy/1.18.4.nix {};
|
||||
happy_1_18_5 = callPackage ../development/tools/parsing/happy/1.18.5.nix {};
|
||||
|
Loading…
Reference in New Issue
Block a user