2017-05-12 18:55:10 +01:00
|
|
|
{
|
2020-10-30 19:03:39 +00:00
|
|
|
mkDerivation, fetchFromGitLab, lib,
|
2017-05-12 18:55:10 +01:00
|
|
|
extra-cmake-modules, qttools,
|
|
|
|
qtbase, qtsvg,
|
|
|
|
}:
|
|
|
|
|
2020-10-30 19:03:39 +00:00
|
|
|
mkDerivation rec {
|
|
|
|
pname = "kdiagram";
|
|
|
|
version = "2.7.0";
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "invent.kde.org";
|
|
|
|
owner = "graphics";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "NSBNHPr8JzBn3y3ivhL0RjiXjDuPwZsTTOeI22pq3vc=";
|
2017-05-12 18:55:10 +01:00
|
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules qttools ];
|
|
|
|
propagatedBuildInputs = [ qtbase qtsvg ];
|
|
|
|
meta = {
|
2017-12-05 22:20:11 +00:00
|
|
|
description = "Libraries for creating business diagrams";
|
2017-05-12 18:55:10 +01:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = qtbase.meta.platforms;
|
|
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
|
|
};
|
|
|
|
}
|