alligator: init at 21.05
This commit is contained in:
parent
dcbe5b8d12
commit
7d8cb8321c
2 changed files with 41 additions and 0 deletions
40
pkgs/applications/plasma-mobile/alligator.nix
Normal file
40
pkgs/applications/plasma-mobile/alligator.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib
|
||||
, mkDerivation
|
||||
|
||||
, cmake
|
||||
, extra-cmake-modules
|
||||
|
||||
, kconfig
|
||||
, kcoreaddons
|
||||
, ki18n
|
||||
, kirigami2
|
||||
, qtquickcontrols2
|
||||
, syndication
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "alligator";
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
kconfig
|
||||
kcoreaddons
|
||||
ki18n
|
||||
kirigami2
|
||||
qtquickcontrols2
|
||||
syndication
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "RSS reader made with kirigami";
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -61,6 +61,7 @@ let
|
|||
inherit mkDerivation;
|
||||
};
|
||||
in {
|
||||
alligator = callPackage ./alligator.nix {};
|
||||
kalk = callPackage ./kalk.nix {};
|
||||
kclock = callPackage ./kclock.nix {};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue