Merge pull request #185018 from kira-bruneau/poke

poke: fix aarch64-darwin build

Changed files
+2 -1
pkgs
applications
editors
+2 -1
pkgs/applications/editors/poke/default.nix
···
{ lib
, stdenv
, fetchurl
+
, autoreconfHook
, gettext
, help2man
, pkg-config
···
strictDeps = true;
nativeBuildInputs = [
+
autoreconfHook
gettext
pkg-config
texinfo
···
license = licenses.gpl3Plus;
maintainers = with maintainers; [ AndersonTorres kira-bruneau ];
platforms = platforms.unix;
-
broken = stdenv.isDarwin && stdenv.isAarch64; # Undefined symbols for architecture arm64
};
}