mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-26 14:04:52 +00:00
haskell-hsqml: fix build
This commit is contained in:
parent
19f74eebd6
commit
278bea4eda
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user