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:
@@ -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/";
|
||||
|
||||
Reference in New Issue
Block a user