biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / kde / kosmindoormap.nix
blob529aac48da7a7b802128967961d2158d7dd3626a
1 { mkDerivation
2 , lib
3 , bison
4 , extra-cmake-modules
5 , flex
6 , ki18n
7 , kopeninghours
8 , kpublictransport
9 }:
11 mkDerivation {
12   pname = "kosmindoormap";
13   outputs = [ "out" "dev" ];
15   nativeBuildInputs = [
16     bison
17     extra-cmake-modules
18     flex
19   ];
21   buildInputs = [
22     ki18n
23     kopeninghours
24     kpublictransport
25   ];
27   meta = {
28     license = with lib.licenses; [ bsd2 bsd3 cc0 lgpl2Plus lgpl3Plus mit odbl ];
29   };