diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index a06f9e6874bb..7c2451623758 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -582,6 +582,12 @@ self: super: { lambdabot-reference-plugins = markBroken super.lambdabot-reference-plugins; lambdabot-social-plugins = markBroken super.lambdabot-social-plugins; + # Upstream provides no issue tracker and no contact details. + vivid = markBroken super.vivid; + + # Test suite wants to connect to $DISPLAY. + hsqml = dontCheck super.hsqml; + } // { # Not on Hackage. diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index d2ffd5dab465..368a09b8d05e 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -65742,9 +65742,8 @@ self: { }) { inherit (pkgs) sqlite;}; "hsqml" = callPackage - ({ mkDerivation, base, c2hs, containers, directory, filepath - , Qt5Core, Qt5Gui, Qt5Qml, Qt5Quick, Qt5Widgets, QuickCheck, tagged - , text, transformers + ({ mkDerivation, base, c2hs, containers, directory, filepath, qt5 + , QuickCheck, tagged, text, transformers }: mkDerivation { pname = "hsqml"; @@ -65755,13 +65754,11 @@ self: { ]; testDepends = [ base containers directory QuickCheck tagged text ]; buildTools = [ c2hs ]; - pkgconfigDepends = [ Qt5Core Qt5Gui Qt5Qml Qt5Quick Qt5Widgets ]; + pkgconfigDepends = [ qt5 ]; homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Haskell binding for Qt Quick"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) { Qt5Core = null; Qt5Gui = null; Qt5Qml = null; - Qt5Quick = null; Qt5Widgets = null;}; + }) { inherit (pkgs) qt5;}; "hsqml-demo-morris" = callPackage ({ mkDerivation, base, containers, deepseq, directory, hsqml