repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
biome: 1.9.2 -> 1.9.3
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
kpublictransport.nix
blob
84d97a42ac3fe4f459835166e9249cc68f8eb6d9
1
{ mkDerivation
2
, lib
3
, extra-cmake-modules
4
, qtquickcontrols2
5
, networkmanager-qt
6
, ki18n
7
}:
8
9
mkDerivation {
10
pname = "kpublictransport";
11
meta = with lib; {
12
license = [ licenses.cc0 ];
13
maintainers = [ ];
14
};
15
nativeBuildInputs = [ extra-cmake-modules ];
16
17
buildInputs = [
18
qtquickcontrols2
19
networkmanager-qt
20
ki18n
21
];
22
}