summary refs log tree commit diff
path: root/pkgs/applications/audio/x42-plugins/default.nix
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2023-03-29 16:08:31 +0000
committerGitHub <noreply@github.com>2023-03-29 16:08:31 +0000
commita4981ae2cf9cf5e8f2a6c290de5d8f39e43f8300 (patch)
tree486bd9b19d28fd504591058ed8b99c30c10a5561 /pkgs/applications/audio/x42-plugins/default.nix
parent573f33b0691f089a7802799225b322561b33d82d (diff)
x42-plugins: 20221119 -> 20230315 (#223669)
Diffstat (limited to 'pkgs/applications/audio/x42-plugins/default.nix')
-rw-r--r--pkgs/applications/audio/x42-plugins/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/applications/audio/x42-plugins/default.nix b/pkgs/applications/audio/x42-plugins/default.nix
index e4cbfacedc0bb..bdd17b2f8f214 100644
--- a/pkgs/applications/audio/x42-plugins/default.nix
+++ b/pkgs/applications/audio/x42-plugins/default.nix
@@ -3,12 +3,12 @@
 , libGLU, lv2, gtk2, cairo, pango, fftwFloat, zita-convolver }:
 
 stdenv.mkDerivation rec {
-  version = "20221119";
   pname = "x42-plugins";
+  version = "20230315";
 
   src = fetchurl {
     url = "https://gareus.org/misc/x42-plugins/${pname}-${version}.tar.xz";
-    sha256 = "sha256-q5RiEzV2QKNWXP8KB6nQjyNCTftiYgeowcbD709PEIk=";
+    hash = "sha256-l7Wg+G795i4QFI94NHcPDnvJMYcfQONUkIJeyX2bZos=";
   };
 
   nativeBuildInputs = [ pkg-config ];
@@ -31,10 +31,12 @@ stdenv.mkDerivation rec {
     sed -i 's|/usr/include/zita-convolver.h|${zita-convolver}/include/zita-convolver.h|g' ./convoLV2/Makefile
   '';
 
+  enableParallelBuilding = true;
+
   meta = with lib;
     { description = "Collection of LV2 plugins by Robin Gareus";
       homepage = "https://github.com/x42/x42-plugins";
-      maintainers = with maintainers; [ magnetophon ];
+      maintainers = with maintainers; [ magnetophon orivej ];
       license = licenses.gpl2;
       platforms = [ "i686-linux" "x86_64-linux" ];
     };