about summary refs log tree commit diff
path: root/pkgs/applications/kde/kpublictransport.nix
blob: 84d97a42ac3fe4f459835166e9249cc68f8eb6d9 (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 = [ ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];

  buildInputs = [
    qtquickcontrols2
    networkmanager-qt
    ki18n
  ];
}