haskell-graphviz: add system graphviz package to the list of test dependencies

This commit is contained in:
Peter Simons 2014-11-01 17:30:48 +01:00
parent 6992d4d5dd
commit 21ab5f5a53
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, colour, dlist, fgl, filepath, polyparse, QuickCheck
, temporary, text, transformers, wlPprintText
, systemGraphviz, temporary, text, transformers, wlPprintText
}:
cabal.mkDerivation (self: {
@ -14,7 +14,7 @@ cabal.mkDerivation (self: {
colour dlist fgl filepath polyparse temporary text transformers
wlPprintText
];
testDepends = [ fgl filepath QuickCheck text ];
testDepends = [ fgl filepath QuickCheck systemGraphviz text ];
jailbreak = true;
meta = {
homepage = "http://projects.haskell.org/graphviz/";

View File

@ -1044,7 +1044,7 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
graphmod = callPackage ../development/tools/haskell/graphmod {};
graphviz = callPackage ../development/libraries/haskell/graphviz {};
graphviz = callPackage ../development/libraries/haskell/graphviz { systemGraphviz = pkgs.graphviz; };
graphSCC = callPackage ../development/libraries/haskell/graphscc {};