3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #138735 from trofi/fix-libebml-for-gcc-11

libebml: upstream fix for gcc-11
This commit is contained in:
Sandro 2021-09-21 00:53:21 +02:00 committed by GitHub
commit 3fffe2d33c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config }:
stdenv.mkDerivation rec {
pname = "libebml";
@ -11,6 +11,15 @@ stdenv.mkDerivation rec {
sha256 = "1hiilnabar826lfxsaflqjhgsdli6hzzhjv8q2nmw36fvvlyks25";
};
patches = [
# Upstream fix for gcc-11
(fetchpatch {
url = "https://github.com/Matroska-Org/libebml/commit/f0bfd53647961e799a43d918c46cf3b6bff89806.patch";
sha256 = "1yd6rsds03kwx5jki4hihd2bpfh26g5l1pi82qzaqzarixdxwzvl";
excludes = [ "ChangeLog" ];
})
];
nativeBuildInputs = [ cmake pkg-config ];
cmakeFlags = [