python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / kdiagram / default.nix
blob3cebc05f3d8b379bf43c807bb166e90683d9c0ae
2   mkDerivation, fetchFromGitLab, lib,
3   extra-cmake-modules, qttools,
4   qtbase, qtsvg,
5 }:
7 mkDerivation rec {
8   pname = "kdiagram";
9   version = "2.8.0";
10   src = fetchFromGitLab {
11     domain = "invent.kde.org";
12     owner = "graphics";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-Se131GZE12wqdfN/V4id1pphUvteSrmMaKZ0+lqg1z8=";
16   };
17   nativeBuildInputs = [ extra-cmake-modules qttools ];
18   propagatedBuildInputs = [ qtbase qtsvg ];
19   meta = {
20     description = "Libraries for creating business diagrams";
21     license = lib.licenses.gpl2;
22     platforms = qtbase.meta.platforms;
23     maintainers = [ lib.maintainers.ttuegel ];
24   };