summary refs log tree commit diff
path: root/pkgs/development/libraries/kproperty/default.nix
blob: 991fd4d27a74b2fa13e25ea0f878707ac27e0254 (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
26
27
28
29
{
  mkDerivation, lib, fetchurl,
  extra-cmake-modules,
  qtbase, kconfig, kcoreaddons, kwidgetsaddons, kguiaddons,
  qttools
}:

mkDerivation rec {
  pname = "kproperty";
  version = "3.2.0";

  src = fetchurl {
    url = "mirror://kde/stable/${pname}/src/${pname}-${version}.tar.xz";
    sha256 = "1yldfsdamk4dag8dyryjn5n9j2pzi42s79kkafymfnbifhnhrbv7";
  };

  nativeBuildInputs = [ extra-cmake-modules ];

  buildInputs = [ kconfig kcoreaddons kwidgetsaddons kguiaddons qttools ];

  propagatedBuildInputs = [ qtbase ];

  meta = with lib; {
    description = "A property editing framework with editor widget similar to what is known from Qt Designer";
    license = licenses.lgpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ zraexy ];
  };
}