about summary refs log tree commit diff
path: root/pkgs/applications/kde/kpublictransport.nix
blob: 0678aa10daff55d2bbd9964d9dff8638bace16b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ mkDerivation
, lib
, extra-cmake-modules
, qtquickcontrols2
, networkmanager-qt
, ki18n
}:

mkDerivation {
  pname = "kpublictransport";
  meta = with lib; {
    license = [ licenses.cc0 ];
    maintainers = [ maintainers.samueldr ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];

  buildInputs = [
    qtquickcontrols2
    networkmanager-qt
    ki18n
  ];
}