mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
50 lines
777 B
Nix
50 lines
777 B
Nix
{ lib
|
|
, mkDerivation
|
|
|
|
, cmake
|
|
, extra-cmake-modules
|
|
|
|
, kconfig
|
|
, kholidays
|
|
, ki18n
|
|
, kirigami-addons
|
|
, kirigami2
|
|
, knotifications
|
|
, kquickcharts
|
|
, kweathercore
|
|
, plasma-framework
|
|
, qtcharts
|
|
, qtquickcontrols2
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "kweather";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
];
|
|
|
|
buildInputs = [
|
|
kconfig
|
|
kholidays
|
|
ki18n
|
|
kirigami-addons
|
|
kirigami2
|
|
knotifications
|
|
kquickcharts
|
|
kweathercore
|
|
plasma-framework
|
|
qtcharts
|
|
qtquickcontrols2
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Weather application for Plasma Mobile";
|
|
mainProgram = "kweather";
|
|
homepage = "https://invent.kde.org/plasma-mobile/kweather";
|
|
license = with licenses; [ gpl2Plus cc-by-40 ];
|
|
maintainers = [ ];
|
|
};
|
|
}
|