nixpkgs/pkgs/applications/kde/kpublictransport.nix

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

14 lines
243 B
Nix
Raw Normal View History

2021-07-14 04:23:24 +00:00
{ mkDerivation
, lib
, extra-cmake-modules
}:
mkDerivation {
pname = "kpublictransport";
meta = with lib; {
license = [ licenses.cc0 ];
maintainers = [ maintainers.samueldr ];
};
nativeBuildInputs = [ extra-cmake-modules ];
}