about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2023-12-07 14:54:40 +0100
committerBart Brouns <bart@magnetophon.nl>2023-12-07 14:56:12 +0100
commitdb096f64e9e9c9e6512c35e3dc00c690f37bfbd9 (patch)
tree5db4dea0c8ef48a23ab2fe64b68f82d9a1e38fb4 /pkgs/applications/audio
parent449c6fb06be60edd4233bb9fe748a0754df185b1 (diff)
surge-XT: 1.2.0 -> 1.2.3
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/surge-XT/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/applications/audio/surge-XT/default.nix b/pkgs/applications/audio/surge-XT/default.nix
index b10b52e7d1c48..7c36c190128dc 100644
--- a/pkgs/applications/audio/surge-XT/default.nix
+++ b/pkgs/applications/audio/surge-XT/default.nix
@@ -17,7 +17,7 @@
 let
   juce-lv2 = stdenv.mkDerivation {
     pname = "juce-lv2";
-    version = "unstable-2022-03-30";
+    version = "unstable-2023-03-04";
 
     # lv2 branch
     src = fetchFromGitHub {
@@ -37,14 +37,14 @@ let
 in
 stdenv.mkDerivation rec {
   pname = "surge-XT";
-  version = "1.2.0";
+  version = "1.2.3";
 
   src = fetchFromGitHub {
     owner = "surge-synthesizer";
     repo = "surge";
     rev = "release_xt_${version}";
     fetchSubmodules = true;
-    sha256 = "sha256-LRYKkzeEuuRbMmvU3E0pHAnotOd4DyIJ7rTb+fpW0H4=";
+    sha256 = "sha256-DGzdzoCjMGEDltEwlPvLk2tyMVRH1Ql2Iq1ypogw/m0=";
   };
 
   nativeBuildInputs = [
@@ -64,6 +64,8 @@ stdenv.mkDerivation rec {
     libXrandr
   ];
 
+  enableParallelBuilding = true;
+
   cmakeFlags = [
     "-DJUCE_SUPPORTS_LV2=ON"
     "-DSURGE_JUCE_PATH=${juce-lv2}"