about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/alligator.nix
blob: 425f9733b38aa6630b0ce92968c7ee2642a7e754 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib
, mkDerivation

, cmake
, extra-cmake-modules

, kconfig
, kcoreaddons
, ki18n
, kirigami-addons
, kirigami2
, qtquickcontrols2
, syndication
}:

mkDerivation rec {
  pname = "alligator";

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  buildInputs = [
    kconfig
    kcoreaddons
    ki18n
    kirigami-addons
    kirigami2
    qtquickcontrols2
    syndication
  ];

  meta = with lib; {
    description = "RSS reader made with kirigami";
    mainProgram = "alligator";
    homepage = "https://invent.kde.org/plasma-mobile/alligator";
    # https://invent.kde.org/plasma-mobile/alligator/-/commit/db30f159c4700244532b17a260deb95551045b7a
    #  * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
    license = with licenses; [ gpl2Only gpl3Only ];
    maintainers = with maintainers; [ samueldr ];
  };
}