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
51 lines
916 B
Nix
51 lines
916 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
qt6,
|
|
spdlog,
|
|
fmt,
|
|
nlohmann_json,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "KDDockWidgets";
|
|
version = "2.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KDAB";
|
|
repo = "KDDockWidgets";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-NNGIR2MTaNs2zFeN9vmHxoRuss2IR7FQ8F34b00L9z4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [
|
|
spdlog
|
|
fmt
|
|
nlohmann_json
|
|
];
|
|
propagatedBuildInputs = with qt6; [
|
|
qtbase
|
|
qtdeclarative
|
|
];
|
|
|
|
cmakeFlags = [ (lib.strings.cmakeBool "KDDockWidgets_QT6" true) ];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = with lib; {
|
|
description = "KDAB's Dock Widget Framework for Qt";
|
|
homepage = "https://www.kdab.com/development-resources/qt-tools/kddockwidgets";
|
|
license = with licenses; [
|
|
gpl2Only
|
|
gpl3Only
|
|
];
|
|
maintainers = with maintainers; [
|
|
_1000teslas
|
|
tmarkus
|
|
];
|
|
};
|
|
}
|