summary refs log blame commit diff
path: root/pkgs/applications/kde/kpublictransport.nix
blob: 0678aa10daff55d2bbd9964d9dff8638bace16b1 (plain) (tree)
1
2
3
4
5
6


                     


                   








                                              





                     
 
{ 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
  ];
}