1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00
nixpkgs/pkgs/applications/kde/kpublictransport.nix
2021-10-05 23:21:43 -04:00

14 lines
243 B
Nix

{ mkDerivation
, lib
, extra-cmake-modules
}:
mkDerivation {
pname = "kpublictransport";
meta = with lib; {
license = [ licenses.cc0 ];
maintainers = [ maintainers.samueldr ];
};
nativeBuildInputs = [ extra-cmake-modules ];
}