about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-12-28 08:56:23 -0500
committerGitHub <noreply@github.com>2023-12-28 08:56:23 -0500
commit2b996bbc1eb190c3aead7d5ad0c97b92600fa705 (patch)
tree24c5ec452d730aad463b758240aaa6816a19de4b /pkgs/development/libraries
parent01a53ca0c02372cde96f6b14b92730e90133f4e1 (diff)
parente5d049a3e6622dfb29d8de66f0b5ca7570cd88a0 (diff)
Merge pull request #276687 from trofi/libsidplayfp-autoconf-2.72
libsidplayfp: pull fix for `autoconf-2.72` pending upstream inclusion
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/libsidplayfp/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libsidplayfp/default.nix b/pkgs/development/libraries/libsidplayfp/default.nix
index 194da3121615b..b8b62781d0a69 100644
--- a/pkgs/development/libraries/libsidplayfp/default.nix
+++ b/pkgs/development/libraries/libsidplayfp/default.nix
@@ -1,6 +1,7 @@
 { stdenv
 , lib
 , fetchFromGitHub
+, fetchpatch
 , makeFontsConf
 , nix-update-script
 , autoreconfHook
@@ -27,6 +28,16 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-KCp/8UjVl8e3+4s1FD4GvHP7AUAS+eIB7RWhmgm5GIA=";
   };
 
+  patches = [
+    # Pull autoconf-2.72 compatibility fix:
+    #   https://github.com/libsidplayfp/libsidplayfp/pull/103
+    (fetchpatch {
+      name = "autoconf-2.72";
+      url = "https://github.com/libsidplayfp/libsidplayfp/commit/b8fff55f6aaa005a3899b59e70cd8730f962641b.patch";
+      hash = "sha256-5Hk202IuHUBow7HnnPr2/ieWFjKDuHLQjQ9mJUML9q8=";
+    })
+  ];
+
   postPatch = ''
     patchShebangs .
   '';