mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
38 lines
833 B
Nix
38 lines
833 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, qtbase
|
|
, qtdeclarative
|
|
, qtquickcontrols2
|
|
, qtx11extras
|
|
, spdlog
|
|
, fmt
|
|
, nlohmann_json
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "KDDockWidgets";
|
|
version = "2.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KDAB";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-gKtW4UjeMUVzBIbV3GuSMtgzIy+N/VlaCc7PPZEHmmg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ spdlog fmt nlohmann_json ];
|
|
propagatedBuildInputs = [ qtbase qtdeclarative qtquickcontrols2 qtx11extras ];
|
|
|
|
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 ];
|
|
};
|
|
}
|