about summary refs log tree commit diff
path: root/pkgs/development/tools/documentation
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-02-24 22:09:07 +0100
committerPeter Simons <simons@cryp.to>2013-02-24 22:09:07 +0100
commit7165babaf12b48ae5ddfc92d500c4016acae45c7 (patch)
tree820acba74035e27c9d61b42d2df32a04b8ee50b8 /pkgs/development/tools/documentation
parente779adc60706ade4ccdc837e54dcb4b0ffd94405 (diff)
downloadnixlib-7165babaf12b48ae5ddfc92d500c4016acae45c7.tar
nixlib-7165babaf12b48ae5ddfc92d500c4016acae45c7.tar.gz
nixlib-7165babaf12b48ae5ddfc92d500c4016acae45c7.tar.bz2
nixlib-7165babaf12b48ae5ddfc92d500c4016acae45c7.tar.lz
nixlib-7165babaf12b48ae5ddfc92d500c4016acae45c7.tar.xz
nixlib-7165babaf12b48ae5ddfc92d500c4016acae45c7.tar.zst
nixlib-7165babaf12b48ae5ddfc92d500c4016acae45c7.zip
Re-generate all Haskell packages with the latest version of cabal2nix.
This change brings support for building and running the regressions test suites.
Diffstat (limited to 'pkgs/development/tools/documentation')
-rw-r--r--pkgs/development/tools/documentation/haddock/2.10.0.nix1
-rw-r--r--pkgs/development/tools/documentation/haddock/2.11.0.nix1
-rw-r--r--pkgs/development/tools/documentation/haddock/2.12.0.nix1
-rw-r--r--pkgs/development/tools/documentation/haddock/2.13.1.nix1
-rw-r--r--pkgs/development/tools/documentation/haddock/2.9.4.nix4
5 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/tools/documentation/haddock/2.10.0.nix b/pkgs/development/tools/documentation/haddock/2.10.0.nix
index 5c608c440aaa..8f16c6c65c4f 100644
--- a/pkgs/development/tools/documentation/haddock/2.10.0.nix
+++ b/pkgs/development/tools/documentation/haddock/2.10.0.nix
@@ -7,6 +7,7 @@ cabal.mkDerivation (self: {
   isLibrary = true;
   isExecutable = true;
   buildDepends = [ Cabal filepath ghcPaths xhtml ];
+  testDepends = [ Cabal filepath ];
   buildTools = [ alex happy ];
   meta = {
     homepage = "http://www.haskell.org/haddock/";
diff --git a/pkgs/development/tools/documentation/haddock/2.11.0.nix b/pkgs/development/tools/documentation/haddock/2.11.0.nix
index 92dccbf05a6b..32b3a5ec8b51 100644
--- a/pkgs/development/tools/documentation/haddock/2.11.0.nix
+++ b/pkgs/development/tools/documentation/haddock/2.11.0.nix
@@ -7,6 +7,7 @@ cabal.mkDerivation (self: {
   isLibrary = true;
   isExecutable = true;
   buildDepends = [ Cabal filepath ghcPaths xhtml ];
+  testDepends = [ Cabal filepath ];
   buildTools = [ alex happy ];
   meta = {
     homepage = "http://www.haskell.org/haddock/";
diff --git a/pkgs/development/tools/documentation/haddock/2.12.0.nix b/pkgs/development/tools/documentation/haddock/2.12.0.nix
index 39610f9a08c2..b1228dab18a2 100644
--- a/pkgs/development/tools/documentation/haddock/2.12.0.nix
+++ b/pkgs/development/tools/documentation/haddock/2.12.0.nix
@@ -7,6 +7,7 @@ cabal.mkDerivation (self: {
   isLibrary = true;
   isExecutable = true;
   buildDepends = [ Cabal deepseq filepath ghcPaths xhtml ];
+  testDepends = [ Cabal filepath ];
   buildTools = [ alex happy ];
   meta = {
     homepage = "http://www.haskell.org/haddock/";
diff --git a/pkgs/development/tools/documentation/haddock/2.13.1.nix b/pkgs/development/tools/documentation/haddock/2.13.1.nix
index 1eed852f5370..5b6ddfc1610a 100644
--- a/pkgs/development/tools/documentation/haddock/2.13.1.nix
+++ b/pkgs/development/tools/documentation/haddock/2.13.1.nix
@@ -7,6 +7,7 @@ cabal.mkDerivation (self: {
   isLibrary = true;
   isExecutable = true;
   buildDepends = [ Cabal deepseq filepath ghcPaths xhtml ];
+  testDepends = [ Cabal filepath ];
   buildTools = [ alex happy ];
   meta = {
     homepage = "http://www.haskell.org/haddock/";
diff --git a/pkgs/development/tools/documentation/haddock/2.9.4.nix b/pkgs/development/tools/documentation/haddock/2.9.4.nix
index 15ed35f5758c..2a29ee950a84 100644
--- a/pkgs/development/tools/documentation/haddock/2.9.4.nix
+++ b/pkgs/development/tools/documentation/haddock/2.9.4.nix
@@ -1,4 +1,5 @@
-{ cabal, alex, Cabal, filepath, ghcPaths, happy, xhtml }:
+{ cabal, alex, Cabal, filepath, ghcPaths, happy, regexCompat, xhtml
+}:
 
 cabal.mkDerivation (self: {
   pname = "haddock";
@@ -7,6 +8,7 @@ cabal.mkDerivation (self: {
   isLibrary = true;
   isExecutable = true;
   buildDepends = [ Cabal filepath ghcPaths xhtml ];
+  testDepends = [ Cabal filepath regexCompat ];
   buildTools = [ alex happy ];
   meta = {
     homepage = "http://www.haskell.org/haddock/";