Merge pull request #173856 from trofi/fix-fno-common-for-gnugo

gnugo: pul patch pending upstream inclusion for -fno-common toolchain…
This commit is contained in:
Jörg Thalheim 2022-05-21 14:43:41 +01:00 committed by GitHub
commit 75020bca80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
pname = "gnugo";
@ -9,6 +9,16 @@ stdenv.mkDerivation rec {
sha256 = "0wkahvqpzq6lzl5r49a4sd4p52frdmphnqsfdv7gdp24bykdfs6s";
};
patches = [
# Pull patch pending upstream inclusion for -fno-common toolchain support:
# https://savannah.gnu.org/patch/index.php?10208
(fetchpatch {
name = "fno-common.patch";
url = "https://savannah.gnu.org/patch/download.php?file_id=53240";
sha256 = "0s96qvmx244vq5pv2nzf7x863kq2y5skzjhbpyzaajfkldbj0sw4";
})
];
hardeningDisable = [ "format" ];
meta = {