about summary refs log tree commit diff
path: root/pkgs/applications/kde/yakuake.nix
diff options
context:
space:
mode:
authornyanloutre <paul@nyanlout.re>2019-08-16 10:31:50 +0200
committernyanloutre <paul@nyanlout.re>2019-08-16 11:34:13 +0200
commitfc7f5e7c5530844e6e28dd4cddb2d96314cac091 (patch)
tree58a8a0b358d072ee9e1561d41c8cf4311759827a /pkgs/applications/kde/yakuake.nix
parent2ac1e31aeaa6b9b6405091ea6bae3fc190a0af53 (diff)
yakuake: move to kde_applications
Diffstat (limited to 'pkgs/applications/kde/yakuake.nix')
-rw-r--r--pkgs/applications/kde/yakuake.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/applications/kde/yakuake.nix b/pkgs/applications/kde/yakuake.nix
new file mode 100644
index 0000000000000..6f9c8df300126
--- /dev/null
+++ b/pkgs/applications/kde/yakuake.nix
@@ -0,0 +1,32 @@
+{
+  mkDerivation, lib, kdoctools, extra-cmake-modules,
+  karchive, kcrash, kdbusaddons, ki18n, kiconthemes, knewstuff, knotifications,
+  knotifyconfig, konsole, kparts, kwindowsystem, qtx11extras
+}:
+
+mkDerivation {
+  name = "yakuake";
+
+  buildInputs = [
+    karchive kcrash kdbusaddons ki18n kiconthemes knewstuff knotifications
+    knotifyconfig kparts kwindowsystem qtx11extras
+  ];
+
+  propagatedBuildInputs = [
+    karchive kcrash kdbusaddons ki18n kiconthemes knewstuff knotifications
+    knotifyconfig kparts kwindowsystem
+  ];
+
+  propagatedUserEnvPkgs = [ konsole ];
+
+  nativeBuildInputs = [
+    extra-cmake-modules kdoctools
+  ];
+
+  meta = {
+    homepage = https://yakuake.kde.org;
+    description = "Quad-style terminal emulator for KDE";
+    maintainers = with lib.maintainers; [ fridh ];
+    license = lib.licenses.gpl2;
+  };
+}