about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-06-18 10:22:18 +0200
committerGitHub <noreply@github.com>2024-06-18 10:22:18 +0200
commit55b0cadc961af373597cad691b3e218c420fa9b7 (patch)
treecc0e17ff3e42801c894ad3e66fe8b37f9598810c /pkgs/applications/audio
parent0fa78eace4e0fc29003396961482cc3a207ed5e5 (diff)
parentdb06c687e08cef62bf738a581585264fd804122c (diff)
Merge pull request #320295 from quantenzitrone/librearp
LibreArp{,-lv2}: rename to librearp{,-lv2}
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/LibreArp/default.nix53
-rw-r--r--pkgs/applications/audio/LibreArp/lv2.nix53
2 files changed, 0 insertions, 106 deletions
diff --git a/pkgs/applications/audio/LibreArp/default.nix b/pkgs/applications/audio/LibreArp/default.nix
deleted file mode 100644
index 0736745aaaf40..0000000000000
--- a/pkgs/applications/audio/LibreArp/default.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-{ stdenv, lib, fetchFromGitLab, cmake, pkg-config, cairo, libxkbcommon
-, xcbutilcursor, xcbutilkeysyms, xcbutil, libXrandr, libXinerama, libXcursor
-, alsa-lib, libjack2, lv2, gcc-unwrapped, curl}:
-
-stdenv.mkDerivation rec {
-  pname = "LibreArp";
-  version = "2.4";
-
-  src = fetchFromGitLab {
-    owner = "LibreArp";
-    repo = "LibreArp";
-    rev = version;
-    hash = "sha256-jEpES68NuHhelUq/L46CxEeadk3LbuPZ72JaGDbw8fg=";
-    fetchSubmodules = true;
-  };
-
-  nativeBuildInputs = [ cmake pkg-config ];
-  buildInputs = [
-    cairo
-    libxkbcommon
-    xcbutilcursor
-    xcbutilkeysyms
-    xcbutil
-    libXrandr
-    libXinerama
-    libXcursor
-    alsa-lib
-    libjack2
-    lv2
-    curl
-  ];
-
-  cmakeFlags = [
-    "-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar"
-    "-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib"
-    "-DCMAKE_NM=${gcc-unwrapped}/bin/gcc-nm"
-  ];
-
-  installPhase = ''
-    mkdir -p $out/lib/vst3
-    cd LibreArp_artefacts/Release
-    cp -r VST3/LibreArp.vst3 $out/lib/vst3
-  '';
-
-  meta = with lib; {
-    description =
-      "A pattern-based arpeggio generator plugin.";
-    homepage = "https://librearp.gitlab.io/";
-    license = licenses.gpl3Plus;
-    platforms = [ "x86_64-linux" ];
-    maintainers = with maintainers; [ magnetophon ];
-  };
-}
diff --git a/pkgs/applications/audio/LibreArp/lv2.nix b/pkgs/applications/audio/LibreArp/lv2.nix
deleted file mode 100644
index b723683b7ec6b..0000000000000
--- a/pkgs/applications/audio/LibreArp/lv2.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-{ stdenv, lib, fetchFromGitLab, cmake, pkg-config, cairo, libxkbcommon
-, xcbutilcursor, xcbutilkeysyms, xcbutil, libXrandr, libXinerama, libXcursor
-, alsa-lib, libjack2, lv2, gcc-unwrapped, curl}:
-
-stdenv.mkDerivation rec {
-  pname = "LibreArp-lv2";
-  version = "2.4";
-
-  src = fetchFromGitLab {
-    owner = "LibreArp";
-    repo = "LibreArp";
-    rev = "${version}-lv2";
-    hash = "sha256-x+ZPiU/ZFzrXb8szMS9Ts4JEEyXYpM8CLZHT4lNJWY8=";
-    fetchSubmodules = true;
-  };
-
-  nativeBuildInputs = [ cmake pkg-config ];
-  buildInputs = [
-    cairo
-    libxkbcommon
-    xcbutilcursor
-    xcbutilkeysyms
-    xcbutil
-    libXrandr
-    libXinerama
-    libXcursor
-    alsa-lib
-    libjack2
-    lv2
-    curl
-  ];
-
-  cmakeFlags = [
-    "-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar"
-    "-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib"
-    "-DCMAKE_NM=${gcc-unwrapped}/bin/gcc-nm"
-  ];
-
-  installPhase = ''
-    mkdir -p $out/lib/lv2
-    cd LibreArp_artefacts/Release
-    cp -r LV2/LibreArp.lv2 $out/lib/lv2
-  '';
-
-  meta = with lib; {
-    description =
-      "A pattern-based arpeggio generator plugin.";
-    homepage = "https://librearp.gitlab.io/";
-    license = licenses.gpl3Plus;
-    platforms = [ "x86_64-linux" ];
-    maintainers = with maintainers; [ magnetophon ];
-  };
-}