mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 01:33:20 +00:00
kquickcharts: init at 5.73.0
This commit is contained in:
parent
e904041bd2
commit
78c52f7c74
@ -112,6 +112,7 @@ let
|
|||||||
kitemmodels = callPackage ./kitemmodels.nix {};
|
kitemmodels = callPackage ./kitemmodels.nix {};
|
||||||
kitemviews = callPackage ./kitemviews.nix {};
|
kitemviews = callPackage ./kitemviews.nix {};
|
||||||
kplotting = callPackage ./kplotting.nix {};
|
kplotting = callPackage ./kplotting.nix {};
|
||||||
|
kquickcharts = callPackage ./kquickcharts.nix {};
|
||||||
kwayland = callPackage ./kwayland.nix {};
|
kwayland = callPackage ./kwayland.nix {};
|
||||||
kwidgetsaddons = callPackage ./kwidgetsaddons.nix {};
|
kwidgetsaddons = callPackage ./kwidgetsaddons.nix {};
|
||||||
kwindowsystem = callPackage ./kwindowsystem {};
|
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
|
knotifyconfig kpackage kparts kpeople kplotting kpty kross krunner
|
||||||
kservice ktexteditor ktextwidgets kunitconversion kwallet kwayland
|
kservice ktexteditor ktextwidgets kunitconversion kwallet kwayland
|
||||||
kwidgetsaddons kwindowsystem kxmlgui kxmlrpcclient modemmanager-qt
|
kwidgetsaddons kwindowsystem kxmlgui kxmlrpcclient modemmanager-qt
|
||||||
networkmanager-qt plasma-framework prison qqc2-desktop-style solid sonnet syntax-highlighting
|
networkmanager-qt plasma-framework prison qqc2-desktop-style solid sonnet
|
||||||
syndication threadweaver kirigami2 kholidays kpurpose kcontacts;
|
syntax-highlighting syndication threadweaver kirigami2 kholidays kpurpose
|
||||||
|
kcontacts kquickcharts;
|
||||||
|
|
||||||
### KDE PLASMA 5
|
### KDE PLASMA 5
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user