Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
900 B
Nix
49 lines
900 B
Nix
{
|
|
fetchFromGitLab,
|
|
lib,
|
|
stdenv,
|
|
gtk2,
|
|
pkg-config,
|
|
qmake,
|
|
qtbase,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "qt6gtk2";
|
|
version = "0.5";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "opencode.net";
|
|
owner = "trialuser";
|
|
repo = "qt6gtk2";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-G2TQ4LU8Cmvd+u6/s1ugbUkZcRXHTBm3+ISY0g/5/60=";
|
|
};
|
|
|
|
buildInputs = [
|
|
gtk2
|
|
qtbase
|
|
];
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
qmake
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
qmakeFlags = [
|
|
"PLUGINDIR=${placeholder "out"}/${qtbase.qtPluginPrefix}"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "GTK+2.0 integration plugins for Qt6";
|
|
license = lib.licenses.gpl2Plus;
|
|
homepage = "https://github.com/trialuser02/qt6gtk2";
|
|
maintainers = [ lib.maintainers.misterio77 ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|