Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / kopeninghours.nix
blob6a49aeea5874c5fb2f13e0a518400f434e1e89ba
1 { mkDerivation
2 , lib
3 , bison
4 , extra-cmake-modules
5 , flex
6 , kholidays
7 , ki18n
8 }:
10 mkDerivation {
11   pname = "kopeninghours";
12   outputs = [ "out" "dev" ];
14   nativeBuildInputs = [
15     bison
16     extra-cmake-modules
17     flex
18   ];
20   buildInputs = [
21     kholidays
22     ki18n
23   ];
25   meta = {
26     license = with lib.licenses; [ bsd3 cc0 lgpl2Plus ];
27   };