Unverified Commit 2b996bbc authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

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

libsidplayfp: pull fix for `autoconf-2.72` pending upstream inclusion
parents 01a53ca0 e5d049a3
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
{ 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 .
  '';