nixpkgs/pkgs/applications/kde/kweather.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
804 B
Nix
Raw Normal View History

2021-03-22 20:20:08 +00:00
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, kconfig
, kholidays
2021-03-22 20:20:08 +00:00
, ki18n
2022-10-01 04:41:49 +00:00
, kirigami-addons
2021-03-22 20:20:08 +00:00
, kirigami2
, knotifications
, kquickcharts
, kweathercore
, plasma-framework
2021-10-06 21:28:04 +00:00
, qtcharts
2021-03-22 20:20:08 +00:00
, qtquickcontrols2
}:
mkDerivation rec {
pname = "kweather";
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
kconfig
kholidays
2021-03-22 20:20:08 +00:00
ki18n
2022-10-01 04:41:49 +00:00
kirigami-addons
2021-03-22 20:20:08 +00:00
kirigami2
knotifications
kquickcharts
kweathercore
plasma-framework
2021-10-06 21:28:04 +00:00
qtcharts
2021-03-22 20:20:08 +00:00
qtquickcontrols2
];
meta = with lib; {
description = "Weather application for Plasma Mobile";
mainProgram = "kweather";
2021-03-22 20:20:08 +00:00
homepage = "https://invent.kde.org/plasma-mobile/kweather";
license = with licenses; [ gpl2Plus cc-by-40 ];
maintainers = with maintainers; [ samueldr ];
};
}