qt6ct: 0.9 -> 0.10 (#384376)

This commit is contained in:
Sefa Eyeoglu
2025-02-26 09:36:03 +01:00
committed by GitHub
+11 -13
View File
@@ -9,18 +9,16 @@
qttools,
wrapQtAppsHook,
}:
let
inherit (lib) getDev;
in
stdenv.mkDerivation (finalAttrs: {
pname = "qt6ct";
version = "0.9";
version = "0.10";
src = fetchFromGitHub {
owner = "trialuser02";
owner = "ilya-fedin";
repo = "qt6ct";
rev = finalAttrs.version;
hash = "sha256-MmN/qPBlsF2mBST+3eYeXaq+7B3b+nTN2hi6CmxrILc=";
tag = finalAttrs.version;
hash = "sha256-ePY+BEpEcAq11+pUMjQ4XG358x3bXFQWwI1UAi+KmLo=";
};
nativeBuildInputs = [
@@ -36,17 +34,17 @@ stdenv.mkDerivation (finalAttrs: {
];
qmakeFlags = [
"LRELEASE_EXECUTABLE=${getDev qttools}/bin/lrelease"
"LRELEASE_EXECUTABLE=${lib.getDev qttools}/bin/lrelease"
"PLUGINDIR=${placeholder "out"}/${qtbase.qtPluginPrefix}"
"LIBDIR=${placeholder "out"}/lib"
];
meta = with lib; {
meta = {
description = "Qt6 Configuration Tool";
homepage = "https://github.com/trialuser02/qt6ct";
platforms = platforms.linux;
license = licenses.bsd2;
maintainers = with maintainers; [
homepage = "https://github.com/ilya-fedin/qt6ct";
platforms = lib.platforms.linux;
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [
Flakebi
Scrumplex
];