83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
22 lines
346 B
Nix
22 lines
346 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
|
|
];
|
|
}
|