about summary refs log tree commit diff
path: root/pkgs/applications/audio/linvstmanager
diff options
context:
space:
mode:
authorGabriel Dougherty <contact@gabrieldougherty.com>2023-03-06 21:49:11 -0500
committerGabriel Dougherty <contact@gabrieldougherty.com>2023-03-07 19:47:18 -0500
commitc051db62ce639d91f4e039dbc5fc1b090b0a35e8 (patch)
tree63ee2ae5e41b5e50d18b555b03e058790e75ffd7 /pkgs/applications/audio/linvstmanager
parentd46a7817b8c8d886c6a81a8ff76338f9c84adc84 (diff)
linvstmanager: init at 1.1.1
Diffstat (limited to 'pkgs/applications/audio/linvstmanager')
-rw-r--r--pkgs/applications/audio/linvstmanager/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/applications/audio/linvstmanager/default.nix b/pkgs/applications/audio/linvstmanager/default.nix
new file mode 100644
index 0000000000000..dc8376c4166f6
--- /dev/null
+++ b/pkgs/applications/audio/linvstmanager/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, qtbase
+, wrapQtAppsHook
+}:
+
+stdenv.mkDerivation rec {
+  pname = "linvstmanager";
+  version = "1.1.1";
+
+  src = fetchFromGitHub {
+    owner = "Goli4thus";
+    repo = "linvstmanager";
+    rev = "v${version}";
+    hash = "sha256-K6eugimMy/MZgHYkg+zfF8DDqUuqqoeymxHtcFGu2Uk=";
+  };
+
+  nativeBuildInputs = [
+    cmake
+    wrapQtAppsHook
+  ];
+
+  buildInputs = [
+    qtbase
+  ];
+
+  meta = with lib; {
+    description = "Graphical companion application for various bridges like LinVst, etc";
+    homepage = "https://github.com/Goli4thus/linvstmanager";
+    license = with licenses; [ gpl3 ];
+    platforms = platforms.linux;
+    maintainers = [ maintainers.GabrielDougherty ];
+  };
+}