kpublictransport: init at 21.04.0
This commit is contained in:
parent
af47c4717e
commit
b5651798b2
2 changed files with 14 additions and 0 deletions
|
@ -174,6 +174,7 @@ let
|
|||
ksquares = callPackage ./ksquares.nix {};
|
||||
kqtquickcharts = callPackage ./kqtquickcharts.nix {};
|
||||
kpkpass = callPackage ./kpkpass.nix {};
|
||||
kpublictransport = callPackage ./kpublictransport.nix {};
|
||||
kreversi = callPackage ./kreversi.nix {};
|
||||
krdc = callPackage ./krdc.nix {};
|
||||
krfb = callPackage ./krfb.nix {};
|
||||
|
|
13
pkgs/applications/kde/kpublictransport.nix
Normal file
13
pkgs/applications/kde/kpublictransport.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ mkDerivation
|
||||
, lib
|
||||
, extra-cmake-modules
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
pname = "kpublictransport";
|
||||
meta = with lib; {
|
||||
license = [ licenses.cc0 ];
|
||||
maintainers = [ maintainers.samueldr ];
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules ];
|
||||
}
|
Loading…
Reference in a new issue