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