Skip to content

Commit

Permalink
ktrip: init at 21.05
Browse files Browse the repository at this point in the history
  • Loading branch information
samueldr committed Oct 6, 2021
1 parent 25a433d commit 8a23358
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/applications/plasma-mobile/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ let
kclock = callPackage ./kclock.nix {};
koko = callPackage ./koko.nix {};
krecorder = callPackage ./krecorder.nix {};
ktrip = callPackage ./ktrip.nix {};
plasma-dialer = callPackage ./plasma-dialer.nix {};
plasma-phonebook = callPackage ./plasma-phonebook.nix {};
spacebar = callPackage ./spacebar.nix {};
Expand Down
45 changes: 45 additions & 0 deletions pkgs/applications/plasma-mobile/ktrip.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

0 comments on commit 8a23358

Please sign in to comment.