Merge pull request #276687 from trofi/libsidplayfp-autoconf-2.72

libsidplayfp: pull fix for `autoconf-2.72` pending upstream inclusion
This commit is contained in:
Mario Rodas 2023-12-28 08:56:23 -05:00 committed by GitHub
commit 2b996bbc1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 .
'';