about summary refs log tree commit diff
path: root/pkgs/applications/audio/lpd8editor
diff options
context:
space:
mode:
authorPablo Ovelleiro Corral <mail@pablo.tools>2023-10-30 16:54:35 +0100
committerPablo Ovelleiro Corral <mail@pablo.tools>2024-01-02 19:48:29 +0100
commit668812e47087c91daf7b8757c7739841904939a6 (patch)
tree5df412327334c91d7106527588b7610b24e0e64e /pkgs/applications/audio/lpd8editor
parented0f304e3329cbd272cebc83cef712f9dba71328 (diff)
lpd8editor: init at v0.0.16
Diffstat (limited to 'pkgs/applications/audio/lpd8editor')
-rw-r--r--pkgs/applications/audio/lpd8editor/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/applications/audio/lpd8editor/default.nix b/pkgs/applications/audio/lpd8editor/default.nix
new file mode 100644
index 0000000000000..4b92417dc694c
--- /dev/null
+++ b/pkgs/applications/audio/lpd8editor/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, qt5
+, stdenv
+, git
+, fetchFromGitHub
+, cmake
+, alsa-lib
+, qttools
+}:
+
+stdenv.mkDerivation rec {
+  pname = "lpd8editor";
+  version = "0.0.16";
+
+  src = fetchFromGitHub {
+    owner = "charlesfleche";
+    repo = "lpd8editor";
+    rev = "v${version}";
+    hash = "sha256-lRp2RhNiIf1VrryfKqYFSbKG3pktw3M7B49fXVoj+C8=";
+  };
+
+  buildInputs = [
+    qttools
+    alsa-lib
+  ];
+
+  nativeBuildInputs = [
+    cmake
+    git
+    qt5.wrapQtAppsHook
+  ];
+
+  meta = with lib; {
+    description = "A linux editor for the Akai LPD8";
+    homepage = "https://github.com/charlesfleche/lpd8editor";
+    license = licenses.mit;
+    maintainers = with maintainers; [ pinpox ];
+    mainProgram = "lpd8editor";
+    platforms = platforms.all;
+  };
+}