about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/kdiagram/default.nix
blob: 3cebc05f3d8b379bf43c807bb166e90683d9c0ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  mkDerivation, fetchFromGitLab, lib,
  extra-cmake-modules, qttools,
  qtbase, qtsvg,
}:

mkDerivation rec {
  pname = "kdiagram";
  version = "2.8.0";
  src = fetchFromGitLab {
    domain = "invent.kde.org";
    owner = "graphics";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-Se131GZE12wqdfN/V4id1pphUvteSrmMaKZ0+lqg1z8=";
  };
  nativeBuildInputs = [ extra-cmake-modules qttools ];
  propagatedBuildInputs = [ qtbase qtsvg ];
  meta = {
    description = "Libraries for creating business diagrams";
    license = lib.licenses.gpl2;
    platforms = qtbase.meta.platforms;
    maintainers = [ lib.maintainers.ttuegel ];
  };
}