about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kopeninghours.nix
blob: 6a49aeea5874c5fb2f13e0a518400f434e1e89ba (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
{ mkDerivation
, lib
, bison
, extra-cmake-modules
, flex
, kholidays
, ki18n
}:

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

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

  buildInputs = [
    kholidays
    ki18n
  ];

  meta = {
    license = with lib.licenses; [ bsd3 cc0 lgpl2Plus ];
  };
}