mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
kproperty: init at 3.0.2
This commit is contained in:
parent
6afa844d31
commit
35954ae8ba
29
pkgs/development/libraries/kproperty/default.nix
Normal file
29
pkgs/development/libraries/kproperty/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{
|
||||
mkDerivation, lib, fetchurl,
|
||||
extra-cmake-modules,
|
||||
qtbase, kconfig, kcoreaddons, kwidgetsaddons, kguiaddons
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "kproperty";
|
||||
version = "3.0.2";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/${pname}/src/${name}.tar.xz";
|
||||
sha256 = "1hzkvdap7dzpnxlp4rfg5f24fhqjpqm2hlvv88gj4c0scbp73ynm";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ extra-cmake-modules ];
|
||||
|
||||
buildInputs = [ kconfig kcoreaddons kwidgetsaddons kguiaddons ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -10125,6 +10125,8 @@ with pkgs;
|
||||
|
||||
kdiagram = callPackage ../development/libraries/kdiagram { };
|
||||
|
||||
kproperty = callPackage ../development/libraries/kproperty { };
|
||||
|
||||
kirigami = kirigami_1;
|
||||
|
||||
libcommuni = callPackage ../development/libraries/libcommuni { };
|
||||
|
Loading…
Reference in New Issue
Block a user