about summary refs log tree commit diff
path: root/pkgs/applications/editors/poke
diff options
context:
space:
mode:
authorKira Bruneau <kira.bruneau@pm.me>2022-08-03 09:40:42 -0400
committerKira Bruneau <kira.bruneau@pm.me>2022-08-03 09:44:48 -0400
commit952c5269b39c31b47a5470c5db9b7fe6a1089675 (patch)
tree454e683a84d8b06d3e6946499600aeead981b3b3 /pkgs/applications/editors/poke
parentf310f24f0d4cd5e8660ccde49e8cbd8dbf0295fa (diff)
poke: fix aarch64-darwin build
jiegec discovered that the reason the aarch64-darwin build was failing
was because pre-generated configure script failed to detect the macOS
version.

With this change we'll just ignore the pre-generated configure script,
and build it ourself with autoreconf.
Diffstat (limited to 'pkgs/applications/editors/poke')
-rw-r--r--pkgs/applications/editors/poke/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/editors/poke/default.nix b/pkgs/applications/editors/poke/default.nix
index fba01f5bdb05c..bcc959bc200a8 100644
--- a/pkgs/applications/editors/poke/default.nix
+++ b/pkgs/applications/editors/poke/default.nix
@@ -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
   };
 }