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
/
kio-gdrive.nix
blob
0be35469d4068b0b2684bb40633caeaf8dda0763
1
{ mkDerivation
2
, lib
3
, extra-cmake-modules
4
, kdoctools
5
, kio
6
, libkgapi
7
, kcalendarcore
8
, kcontacts
9
, qtkeychain
10
, libsecret
11
, kaccounts-integration
12
}:
13
14
mkDerivation {
15
pname = "kio-gdrive";
16
meta = with lib; {
17
homepage = "https://github.com/KDE/kio-gdrive";
18
description = "KIO slave for Google APIs";
19
maintainers = with maintainers; [ kennyballou ];
20
license = licenses.gpl2Plus;
21
platforms = platforms.linux;
22
};
23
nativeBuildInputs = [
24
extra-cmake-modules
25
kdoctools
26
];
27
buildInputs = [
28
kcalendarcore
29
kcontacts
30
kaccounts-integration
31
libkgapi
32
libsecret
33
kio
34
qtkeychain
35
];
36
}