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 e779adc607
commit 7165babaf1
147 changed files with 681 additions and 181 deletions
@@ -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/";
@@ -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/";
@@ -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/";
@@ -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/";
@@ -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/";