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
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
pkgs
/
applications
/
plasma-mobile
/
calindori.nix
blob
bb10fa7bb10c7cbe6f659c2d3b0259f3c525b947
1
{ lib
2
, mkDerivation
3
4
, cmake
5
, extra-cmake-modules
6
7
, kcalendarcore
8
, kconfig
9
, kcoreaddons
10
, kdbusaddons
11
, ki18n
12
, kirigami2
13
, knotifications
14
, kpeople
15
, kservice
16
, qtquickcontrols2
17
}:
18
19
mkDerivation rec {
20
pname = "calindori";
21
22
nativeBuildInputs = [
23
cmake
24
extra-cmake-modules
25
];
26
27
buildInputs = [
28
kcalendarcore
29
kconfig
30
kcoreaddons
31
kdbusaddons
32
ki18n
33
kirigami2
34
knotifications
35
kpeople
36
kservice
37
qtquickcontrols2
38
];
39
40
meta = with lib; {
41
description = "Calendar for Plasma Mobile";
42
homepage = "https://invent.kde.org/plasma-mobile/calindori";
43
license = licenses.gpl3Plus;
44
maintainers = with maintainers; [ samueldr ];
45
};
46
}