23 lines
354 B
Nix
23 lines
354 B
Nix
{
|
|
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
|
|
];
|
|
}
|