about summary refs log tree commit diff
path: root/pkgs/applications/audio/fluidsynth
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2023-09-27 19:15:31 +0100
committerSergei Trofimovich <slyich@gmail.com>2023-09-27 19:15:31 +0100
commite00f77c7b83b420a42add5f16ae83fb5122300f0 (patch)
tree1519458f727f7895a3bc88aefdc53d4403709d58 /pkgs/applications/audio/fluidsynth
parent56c409f4a91e83b02f07fc5ba56f274bb4358485 (diff)
fluidsynth: 2.3.3 -> 2.3.4
Changes: https://github.com/FluidSynth/fluidsynth/releases/tag/v2.3.4
Diffstat (limited to 'pkgs/applications/audio/fluidsynth')
-rw-r--r--pkgs/applications/audio/fluidsynth/default.nix16
1 files changed, 3 insertions, 13 deletions
diff --git a/pkgs/applications/audio/fluidsynth/default.nix b/pkgs/applications/audio/fluidsynth/default.nix
index 503e72dfe0e30..34329fb2ea84d 100644
--- a/pkgs/applications/audio/fluidsynth/default.nix
+++ b/pkgs/applications/audio/fluidsynth/default.nix
@@ -1,29 +1,19 @@
-{ stdenv, lib, fetchFromGitHub, fetchpatch, buildPackages, pkg-config, cmake
+{ stdenv, lib, fetchFromGitHub, buildPackages, pkg-config, cmake
 , alsa-lib, glib, libjack2, libsndfile, libpulseaudio
 , AppKit, AudioUnit, CoreAudio, CoreMIDI, CoreServices
 }:
 
 stdenv.mkDerivation rec {
   pname = "fluidsynth";
-  version = "2.3.3";
+  version = "2.3.4";
 
   src = fetchFromGitHub {
     owner = "FluidSynth";
     repo = "fluidsynth";
     rev = "v${version}";
-    sha256 = "sha256-RqhlpvMbRSwdcY2uuFAdJnihN3aObcLVMuvCZ294dgo=";
+    hash = "sha256-3qLmo9Ibl44v6Jj5Ix17ixwqfPt3ITTXUqBETF5pzE4=";
   };
 
-  patches = [
-    # Fixes bad CMAKE_INSTALL_PREFIX + CMAKE_INSTALL_LIBDIR concatenation for Darwin install name dir
-    # Remove when PR merged & in release
-    (fetchpatch {
-      name = "0001-Fix-incorrect-way-of-turning-CMAKE_INSTALL_LIBDIR-absolute.patch";
-      url = "https://github.com/FluidSynth/fluidsynth/pull/1261/commits/03cd38dd909fc24aa39553d869afbb4024416de8.patch";
-      hash = "sha256-nV+MbFttnbNBO4zWnPLpnnEuoiESkV9BGFlUS9tQQfk=";
-    })
-  ];
-
   outputs = [ "out" "dev" "man" ];
 
   nativeBuildInputs = [ buildPackages.stdenv.cc pkg-config cmake ];