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
ryujinx-greemdev: init at 1.2.76 (#353897)
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
yakuake.nix
blob
b64a7aac696424ac4cf7e3661fa59a2f50e05da0
1
{
2
mkDerivation,
3
lib,
4
kdoctools,
5
extra-cmake-modules,
6
karchive,
7
kcrash,
8
kdbusaddons,
9
ki18n,
10
kiconthemes,
11
knewstuff,
12
knotifications,
13
knotifyconfig,
14
konsole,
15
kparts,
16
kwayland,
17
kwindowsystem,
18
qtx11extras,
19
}:
20
21
mkDerivation {
22
pname = "yakuake";
23
24
buildInputs = [
25
karchive
26
kcrash
27
kdbusaddons
28
ki18n
29
kiconthemes
30
knewstuff
31
knotifications
32
knotifyconfig
33
kparts
34
kwayland
35
kwindowsystem
36
qtx11extras
37
];
38
39
propagatedBuildInputs = [
40
karchive
41
kcrash
42
kdbusaddons
43
ki18n
44
kiconthemes
45
knewstuff
46
knotifications
47
knotifyconfig
48
kparts
49
kwindowsystem
50
];
51
52
propagatedUserEnvPkgs = [ konsole ];
53
54
nativeBuildInputs = [
55
extra-cmake-modules
56
kdoctools
57
];
58
59
outputs = [
60
"out"
61
"dev"
62
];
63
64
meta = {
65
homepage = "https://yakuake.kde.org";
66
description = "Quad-style terminal emulator for KDE";
67
mainProgram = "yakuake";
68
license = lib.licenses.gpl2;
69
};
70
}