biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / kde / kweather.nix
blob6e2d3047d02517469fe1144f5b4797c701fcdc9c
1 { lib
2 , mkDerivation
4 , cmake
5 , extra-cmake-modules
7 , kconfig
8 , kholidays
9 , ki18n
10 , kirigami-addons
11 , kirigami2
12 , knotifications
13 , kquickcharts
14 , kweathercore
15 , plasma-framework
16 , qtcharts
17 , qtquickcontrols2
20 mkDerivation rec {
21   pname = "kweather";
23   nativeBuildInputs = [
24     cmake
25     extra-cmake-modules
26   ];
28   buildInputs = [
29     kconfig
30     kholidays
31     ki18n
32     kirigami-addons
33     kirigami2
34     knotifications
35     kquickcharts
36     kweathercore
37     plasma-framework
38     qtcharts
39     qtquickcontrols2
40   ];
42   meta = with lib; {
43     description = "Weather application for Plasma Mobile";
44     mainProgram = "kweather";
45     homepage = "https://invent.kde.org/plasma-mobile/kweather";
46     license = with licenses; [ gpl2Plus cc-by-40 ];
47     maintainers = [ ];
48   };