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
/
kosmindoormap.nix
blob
529aac48da7a7b802128967961d2158d7dd3626a
1
{ mkDerivation
2
, lib
3
, bison
4
, extra-cmake-modules
5
, flex
6
, ki18n
7
, kopeninghours
8
, kpublictransport
9
}:
10
11
mkDerivation {
12
pname = "kosmindoormap";
13
outputs = [ "out" "dev" ];
14
15
nativeBuildInputs = [
16
bison
17
extra-cmake-modules
18
flex
19
];
20
21
buildInputs = [
22
ki18n
23
kopeninghours
24
kpublictransport
25
];
26
27
meta = {
28
license = with lib.licenses; [ bsd2 bsd3 cc0 lgpl2Plus lgpl3Plus mit odbl ];
29
};
30
}