forked from mirrors/nixpkgs
23 lines
367 B
Nix
23 lines
367 B
Nix
{ 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
|
|
];
|
|
}
|