Merge pull request #173021 from trofi/fix-fno-common-for-gerbv
gerbv: pull fix pending upstream inclusion for -fno-common toolchains
This commit is contained in:
commit
53591dcd4d
1 changed files with 11 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchgit, pkg-config, gettext, libtool, automake, autoconf, cairo, gtk2, autoreconfHook }:
|
{ lib, stdenv, fetchgit, fetchpatch, pkg-config, gettext, libtool, automake, autoconf, cairo, gtk2, autoreconfHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "gerbv";
|
pname = "gerbv";
|
||||||
|
@ -10,6 +10,16 @@ stdenv.mkDerivation {
|
||||||
sha256 = "00jn1xhf6kblxc5gac1wvk8zm12fy6sk81nj3jwdag0z6wk3z446";
|
sha256 = "00jn1xhf6kblxc5gac1wvk8zm12fy6sk81nj3jwdag0z6wk3z446";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Pull patch pending upstream inclusion for -fno-common toolchains:
|
||||||
|
# https://sourceforge.net/p/gerbv/patches/84/
|
||||||
|
(fetchpatch {
|
||||||
|
name = "fnoc-mmon.patch";
|
||||||
|
url = "https://sourceforge.net/p/gerbv/patches/84/attachment/0001-gerbv-fix-build-on-gcc-10-fno-common.patch";
|
||||||
|
sha256 = "1avfbkqhxl7wxn1z19y30ilkwvdgpdkzhzawrs5y3damxmqq8ggk";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkg-config automake autoconf ];
|
nativeBuildInputs = [ autoreconfHook pkg-config automake autoconf ];
|
||||||
buildInputs = [ gettext libtool cairo gtk2 ];
|
buildInputs = [ gettext libtool cairo gtk2 ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue