nixpkgs/pkgs/applications/kde/kpublictransport.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
367 B
Nix
Raw Normal View History

2021-07-14 04:23:24 +00:00
{ mkDerivation
, lib
, extra-cmake-modules
2023-03-17 22:39:35 +00:00
, qtquickcontrols2
, networkmanager-qt
, ki18n
2021-07-14 04:23:24 +00:00
}:
mkDerivation {
pname = "kpublictransport";
meta = with lib; {
license = [ licenses.cc0 ];
maintainers = [ maintainers.samueldr ];
};
nativeBuildInputs = [ extra-cmake-modules ];
2023-03-17 22:39:35 +00:00
buildInputs = [
qtquickcontrols2
networkmanager-qt
ki18n
];
2021-07-14 04:23:24 +00:00
}