summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKira Bruneau <kira.bruneau@pm.me>2022-07-26 11:04:00 -0400
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2022-07-30 03:07:55 +0000
commit11fc4a7fc121eea52761c7527e7c54fd4fe6774f (patch)
tree6090620b4a4722f5535d3a65634c983e857980d5
parentpoke: fix cross-compilation (diff)
downloadnixpkgs-11fc4a7fc121eea52761c7527e7c54fd4fe6774f.tar.gz
poke: mark aarch64-darwin as a bad platform
Jitter fails to compile on aarch64-darwin: Undefined symbols for architecture arm64: "_jitter_print_context_kind_destroy", referenced from: _jitter_print_libtextstyle_finalize in libjitter-libtextstyle.a(jitter-print-libtextstyle.o) "_jitter_print_context_kind_make_trivial", referenced from: _jitter_print_libtextstyle_initialize in libjitter-libtextstyle.a(jitter-print-libtextstyle.o) "_jitter_print_context_make", referenced from: _jitter_print_context_make_libtextstyle in libjitter-libtextstyle.a(jitter-print-libtextstyle.o) (maybe you meant: _jitter_print_context_make_libtextstyle) "_ostream_flush", referenced from: _jitter_print_context_libtextstyle_flush in libjitter-libtextstyle.a(jitter-print-libtextstyle.o) "_ostream_write_mem", referenced from: _jitter_print_context_libtextstyle_print_chars in libjitter-libtextstyle.a(jitter-print-libtextstyle.o) "_styled_ostream_begin_use_class", referenced from: _jitter_print_context_libtextstyle_begin_decoration in libjitter-libtextstyle.a(jitter-print-libtextstyle.o) "_styled_ostream_end_use_class", referenced from: _jitter_print_context_libtextstyle_end_decoration in libjitter-libtextstyle.a(jitter-print-libtextstyle.o) "_styled_ostream_set_hyperlink", referenced from: _jitter_print_context_libtextstyle_begin_decoration in libjitter-libtextstyle.a(jitter-print-libtextstyle.o) _jitter_print_context_libtextstyle_end_decoration in libjitter-libtextstyle.a(jitter-print-libtextstyle.o) ld: symbol(s) not found for architecture arm64 (cherry picked from commit 9f5b96a9e13b6e934448c576a7a525be70e0ad69)
-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 9bfc142b7d78..df20645a33e1 100644
--- a/pkgs/applications/editors/poke/default.nix
+++ b/pkgs/applications/editors/poke/default.nix
@@ -104,10 +104,11 @@ in stdenv.mkDerivation rec {
meta = with lib; {
description = "Interactive, extensible editor for binary data";
homepage = "http://www.jemarch.net/poke";
+ changelog = "https://git.savannah.gnu.org/cgit/poke.git/plain/ChangeLog?h=releases/poke-${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ AndersonTorres kira-bruneau ];
platforms = platforms.unix;
- changelog = "https://git.savannah.gnu.org/cgit/poke.git/plain/ChangeLog?h=releases/poke-${version}";
+ badPlatforms = [ "aarch64-darwin" ]; # Undefined symbols for architecture arm64
};
}