forked from mirrors/nixpkgs
ktrip: init at 21.05
This commit is contained in:
parent
25a433d286
commit
8a2335829c
|
@ -67,6 +67,7 @@ let
|
||||||
kclock = callPackage ./kclock.nix {};
|
kclock = callPackage ./kclock.nix {};
|
||||||
koko = callPackage ./koko.nix {};
|
koko = callPackage ./koko.nix {};
|
||||||
krecorder = callPackage ./krecorder.nix {};
|
krecorder = callPackage ./krecorder.nix {};
|
||||||
|
ktrip = callPackage ./ktrip.nix {};
|
||||||
plasma-dialer = callPackage ./plasma-dialer.nix {};
|
plasma-dialer = callPackage ./plasma-dialer.nix {};
|
||||||
plasma-phonebook = callPackage ./plasma-phonebook.nix {};
|
plasma-phonebook = callPackage ./plasma-phonebook.nix {};
|
||||||
spacebar = callPackage ./spacebar.nix {};
|
spacebar = callPackage ./spacebar.nix {};
|
||||||
|
|
45
pkgs/applications/plasma-mobile/ktrip.nix
Normal file
45
pkgs/applications/plasma-mobile/ktrip.nix
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{ lib
|
||||||
|
, mkDerivation
|
||||||
|
|
||||||
|
, cmake
|
||||||
|
, extra-cmake-modules
|
||||||
|
|
||||||
|
, kconfig
|
||||||
|
, kcontacts
|
||||||
|
, kcoreaddons
|
||||||
|
, ki18n
|
||||||
|
, kirigami-addons
|
||||||
|
, kirigami2
|
||||||
|
, kitemmodels
|
||||||
|
, kpublictransport
|
||||||
|
, qtquickcontrols2
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "ktrip";
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
extra-cmake-modules
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
kconfig
|
||||||
|
kcontacts
|
||||||
|
kcoreaddons
|
||||||
|
ki18n
|
||||||
|
kirigami-addons
|
||||||
|
kirigami2
|
||||||
|
kitemmodels
|
||||||
|
kpublictransport
|
||||||
|
qtquickcontrols2
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Public transport trip planner";
|
||||||
|
homepage = "https://apps.kde.org/ktrip/";
|
||||||
|
# GPL-2.0-or-later
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ samueldr ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue