about summary refs log tree commit diff
path: root/pkgs/applications/kde/krecorder.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/kde/krecorder.nix')
-rw-r--r--pkgs/applications/kde/krecorder.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/applications/kde/krecorder.nix b/pkgs/applications/kde/krecorder.nix
new file mode 100644
index 0000000000000..71164d1b02d43
--- /dev/null
+++ b/pkgs/applications/kde/krecorder.nix
@@ -0,0 +1,42 @@
+{ lib
+, mkDerivation
+
+, cmake
+, extra-cmake-modules
+
+, kconfig
+, kcoreaddons
+, ki18n
+, kirigami2
+, kirigami-addons
+, kwindowsystem
+, qtmultimedia
+, qtquickcontrols2
+}:
+
+mkDerivation rec {
+  pname = "krecorder";
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    kconfig
+    kcoreaddons
+    ki18n
+    kirigami2
+    kirigami-addons
+    kwindowsystem
+    qtmultimedia
+    qtquickcontrols2
+  ];
+
+  meta = with lib; {
+    description = "Audio recorder for Plasma Mobile";
+    homepage = "https://invent.kde.org/plasma-mobile/krecorder";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ samueldr ];
+  };
+}