about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kosmindoormap.nix
blob: 529aac48da7a7b802128967961d2158d7dd3626a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ mkDerivation
, lib
, bison
, extra-cmake-modules
, flex
, ki18n
, kopeninghours
, kpublictransport
}:

mkDerivation {
  pname = "kosmindoormap";
  outputs = [ "out" "dev" ];

  nativeBuildInputs = [
    bison
    extra-cmake-modules
    flex
  ];

  buildInputs = [
    ki18n
    kopeninghours
    kpublictransport
  ];

  meta = {
    license = with lib.licenses; [ bsd2 bsd3 cc0 lgpl2Plus lgpl3Plus mit odbl ];
  };
}