python313Packages.kasa-crypt: 0.4.4 -> 0.5.0 (#375396)
[NixPkgs.git] / pkgs / applications / kde / alligator.nix
blob305f39bd712f77b09c48540e8398fd0ef8f3fdef
2   lib,
3   mkDerivation,
5   cmake,
6   extra-cmake-modules,
8   kconfig,
9   kcoreaddons,
10   ki18n,
11   kirigami-addons,
12   kirigami2,
13   qtquickcontrols2,
14   syndication,
17 mkDerivation rec {
18   pname = "alligator";
20   nativeBuildInputs = [
21     cmake
22     extra-cmake-modules
23   ];
25   buildInputs = [
26     kconfig
27     kcoreaddons
28     ki18n
29     kirigami-addons
30     kirigami2
31     qtquickcontrols2
32     syndication
33   ];
35   meta = with lib; {
36     description = "RSS reader made with kirigami";
37     mainProgram = "alligator";
38     homepage = "https://invent.kde.org/plasma-mobile/alligator";
39     # https://invent.kde.org/plasma-mobile/alligator/-/commit/db30f159c4700244532b17a260deb95551045b7a
40     #  * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
41     license = with licenses; [
42       gpl2Only
43       gpl3Only
44     ];
45     maintainers = [ ];
46   };