mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
bafb37491e
Year was typo'd, should be 2023
107 lines
2.3 KiB
Nix
107 lines
2.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitLab,
|
|
unstableGitUpdater,
|
|
accounts-qt,
|
|
dbus-test-runner,
|
|
pkg-config,
|
|
qmake,
|
|
qtbase,
|
|
qtdeclarative,
|
|
qttools,
|
|
signond,
|
|
xvfb-run,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "accounts-qml-module";
|
|
version = "0.7-unstable-2023-10-28";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "accounts-sso";
|
|
repo = "accounts-qml-module";
|
|
rev = "05e79ebbbf3784a87f72b7be571070125c10dfe3";
|
|
hash = "sha256-ZpnkZauowLPBnO3DDDtG/x07XoQGVNqEF8AQB5TZK84=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
];
|
|
|
|
postPatch =
|
|
''
|
|
substituteInPlace src/src.pro \
|
|
--replace '$$[QT_INSTALL_BINS]/qmlplugindump' 'qmlplugindump' \
|
|
--replace '$$[QT_INSTALL_QML]' '${placeholder "out"}/${qtbase.qtQmlPrefix}'
|
|
|
|
# Find qdoc
|
|
substituteInPlace doc/doc.pri \
|
|
--replace-fail 'QDOC = $$[QT_INSTALL_BINS]/qdoc' 'QDOC = qdoc'
|
|
|
|
# Don't install test binary
|
|
sed -i tests/tst_plugin.pro \
|
|
-e '/TARGET = tst_plugin/a INSTALLS -= target'
|
|
''
|
|
+ lib.optionalString (!finalAttrs.finalPackage.doCheck) ''
|
|
sed -i accounts-qml-module.pro -e '/tests/d'
|
|
'';
|
|
|
|
# QMake can't find Qt modules in buildInputs
|
|
strictDeps = false;
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
qmake
|
|
qtdeclarative # qmlplugindump
|
|
qttools # qdoc
|
|
];
|
|
|
|
buildInputs = [
|
|
accounts-qt
|
|
qtbase
|
|
qtdeclarative
|
|
signond
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
dbus-test-runner
|
|
xvfb-run
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
postConfigure = ''
|
|
make qmake_all
|
|
'';
|
|
|
|
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
|
|
|
preCheck = ''
|
|
# Needs xcb platform plugin
|
|
export QT_PLUGIN_PATH=${lib.getBin qtbase}/${qtbase.qtPluginPrefix}
|
|
'';
|
|
|
|
preInstall = ''
|
|
# Same plugin needed here, re-export in case checks are disabled
|
|
export QT_PLUGIN_PATH=${lib.getBin qtbase}/${qtbase.qtPluginPrefix}
|
|
'';
|
|
|
|
postFixup = ''
|
|
moveToOutput share/accounts-qml-module/doc $doc
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
tagPrefix = "VERSION_";
|
|
};
|
|
|
|
meta = {
|
|
description = "QML bindings for libaccounts-qt + libsignon-qt";
|
|
homepage = "https://gitlab.com/accounts-sso/accounts-qml-module";
|
|
license = lib.licenses.lgpl21Only;
|
|
maintainers = with lib.maintainers; [ OPNA2608 ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|