Re-generate all Haskell packages with the latest version of cabal2nix.

This change brings support for building and running the regressions test suites.
This commit is contained in:
Peter Simons
2013-02-24 22:09:07 +01:00
parent d0bfd6936e
commit a30df95691
146 changed files with 680 additions and 180 deletions

View File

@@ -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/";

View File

@@ -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/";

View File

@@ -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/";

View File

@@ -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/";

View File

@@ -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/";