nixpkgs/pkgs/development/libraries/kddockwidgets/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
653 B
Nix
Raw Normal View History

2021-08-16 14:15:24 +00:00
{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qtbase
, qtx11extras
}:
mkDerivation rec {
pname = "KDDockWidgets";
2021-12-10 14:35:07 +00:00
version = "1.5.0";
2021-08-16 14:15:24 +00:00
src = fetchFromGitHub {
owner = "KDAB";
repo = pname;
rev = "v${version}";
2021-12-10 14:35:07 +00:00
sha256 = "sha256-7jC0zl5ESwqZXzvFJYmPvRhwFitse05NuYoTgFWiHac=";
2021-08-16 14:15:24 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qtbase qtx11extras ];
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 ];
};
}