forked from mirrors/nixpkgs
kquickcharts: init at 5.73.0
This commit is contained in:
parent
e904041bd2
commit
78c52f7c74
|
@ -112,6 +112,7 @@ let
|
|||
kitemmodels = callPackage ./kitemmodels.nix {};
|
||||
kitemviews = callPackage ./kitemviews.nix {};
|
||||
kplotting = callPackage ./kplotting.nix {};
|
||||
kquickcharts = callPackage ./kquickcharts.nix {};
|
||||
kwayland = callPackage ./kwayland.nix {};
|
||||
kwidgetsaddons = callPackage ./kwidgetsaddons.nix {};
|
||||
kwindowsystem = callPackage ./kwindowsystem {};
|
||||
|
|
15
pkgs/development/libraries/kde-frameworks/kquickcharts.nix
Normal file
15
pkgs/development/libraries/kde-frameworks/kquickcharts.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
mkDerivation, lib,
|
||||
extra-cmake-modules,
|
||||
qtquickcontrols2,
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "kquickcharts";
|
||||
meta = {
|
||||
maintainers = [ lib.maintainers.ttuegel ];
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules ];
|
||||
propagatedBuildInputs = [ qtquickcontrols2 ];
|
||||
outputs = [ "out" "dev" ];
|
||||
}
|
|
@ -14848,8 +14848,9 @@ in
|
|||
knotifyconfig kpackage kparts kpeople kplotting kpty kross krunner
|
||||
kservice ktexteditor ktextwidgets kunitconversion kwallet kwayland
|
||||
kwidgetsaddons kwindowsystem kxmlgui kxmlrpcclient modemmanager-qt
|
||||
networkmanager-qt plasma-framework prison qqc2-desktop-style solid sonnet syntax-highlighting
|
||||
syndication threadweaver kirigami2 kholidays kpurpose kcontacts;
|
||||
networkmanager-qt plasma-framework prison qqc2-desktop-style solid sonnet
|
||||
syntax-highlighting syndication threadweaver kirigami2 kholidays kpurpose
|
||||
kcontacts kquickcharts;
|
||||
|
||||
### KDE PLASMA 5
|
||||
|
||||
|
|
Loading…
Reference in a new issue