2021-03-22 19:53:12 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
mkDerivation,
|
|
|
|
|
|
|
|
cmake,
|
|
|
|
extra-cmake-modules,
|
|
|
|
|
|
|
|
kconfig,
|
|
|
|
kcoreaddons,
|
|
|
|
ki18n,
|
2022-12-01 03:09:03 +00:00
|
|
|
kirigami-addons,
|
2021-03-22 19:53:12 +00:00
|
|
|
kirigami2,
|
|
|
|
qtquickcontrols2,
|
|
|
|
syndication,
|
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "alligator";
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
extra-cmake-modules
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
kconfig
|
|
|
|
kcoreaddons
|
|
|
|
ki18n
|
2022-12-01 03:09:03 +00:00
|
|
|
kirigami-addons
|
2021-03-22 19:53:12 +00:00
|
|
|
kirigami2
|
|
|
|
qtquickcontrols2
|
|
|
|
syndication
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "RSS reader made with kirigami";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "alligator";
|
2021-03-22 19:53:12 +00:00
|
|
|
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
|
|
|
|
];
|
2024-07-28 14:44:11 +00:00
|
|
|
maintainers = [ ];
|
2021-03-22 19:53:12 +00:00
|
|
|
};
|
|
|
|
}
|