mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
Merge pull request #155247 from trofi/fix-aumix-for-fno-common
aumix: fix build against fno-common toolchains
This commit is contained in:
commit
483aec3fe0
1 changed files with 11 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
, stdenv
|
||||||
, fetchurl
|
, fetchurl
|
||||||
|
, fetchpatch
|
||||||
, gettext
|
, gettext
|
||||||
, ncurses
|
, ncurses
|
||||||
, gtkGUI ? false
|
, gtkGUI ? false
|
||||||
|
@ -17,6 +18,16 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0a8fwyxnc5qdxff8sl2sfsbnvgh6pkij4yafiln0fxgg6bal7knj";
|
sha256 = "0a8fwyxnc5qdxff8sl2sfsbnvgh6pkij4yafiln0fxgg6bal7knj";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Pull Gentoo fix for -fno-common toolchains. Upstream does not
|
||||||
|
# seem to have the contacts
|
||||||
|
(fetchpatch {
|
||||||
|
name = "fno-common.patch";
|
||||||
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-sound/aumix/files/aumix-2.9.1-fno-common.patch?id=496c9ec7355f06f6d1d19be780a6981503e6df1f";
|
||||||
|
sha256 = "0qwylhx1hawsmx1pc7ykrjq9phksc73dq9rss6ggq15n3ggnc95y";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [ gettext ncurses ]
|
buildInputs = [ gettext ncurses ]
|
||||||
++ lib.optionals gtkGUI [ pkg-config gtk2 ];
|
++ lib.optionals gtkGUI [ pkg-config gtk2 ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue