Merge pull request #185018 from kira-bruneau/poke

poke: fix aarch64-darwin build
This commit is contained in:
Kira Bruneau 2022-08-03 13:15:27 -04:00 committed by GitHub
commit 951c50ec6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchurl
, autoreconfHook
, gettext
, help2man
, pkg-config
@ -40,6 +41,7 @@ in stdenv.mkDerivation rec {
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
gettext
pkg-config
texinfo
@ -108,7 +110,6 @@ in stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
maintainers = with maintainers; [ AndersonTorres kira-bruneau ];
platforms = platforms.unix;
broken = stdenv.isDarwin && stdenv.isAarch64; # Undefined symbols for architecture arm64
};
}