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
74 lines
1.3 KiB
Nix
74 lines
1.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
cmake,
|
|
ninja,
|
|
qtbase,
|
|
qtwayland,
|
|
qt5,
|
|
xorg,
|
|
useQt6 ? false,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "adwaita-qt";
|
|
version = "1.4.2";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FedoraQt";
|
|
repo = "adwaita-qt";
|
|
rev = version;
|
|
sha256 = "sha256-K/+SL52C+M2OC4NL+mhBnm/9BwH0KNNTGIDmPwuUwkM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
xorg.libxcb
|
|
]
|
|
++ lib.optionals (!useQt6) [
|
|
qt5.qtx11extras
|
|
]
|
|
++ lib.optionals useQt6 [
|
|
qtwayland
|
|
];
|
|
|
|
# Qt setup hook complains about missing `wrapQtAppsHook` otherwise.
|
|
dontWrapQtApps = true;
|
|
|
|
cmakeFlags = lib.optionals useQt6 [
|
|
"-DUSE_QT6=true"
|
|
];
|
|
|
|
postPatch = ''
|
|
# Fix plugin dir
|
|
substituteInPlace src/style/CMakeLists.txt \
|
|
--replace "DESTINATION \"\''${QT_PLUGINS_DIR}/styles" "DESTINATION \"$qtPluginPrefix/styles"
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Style to bend Qt applications to look like they belong into GNOME Shell";
|
|
homepage = "https://github.com/FedoraQt/adwaita-qt";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|