about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2023-11-26 18:46:09 +0100
committerGitHub <noreply@github.com>2023-11-26 18:46:09 +0100
commitb608fc233c0592210250974d1bb3c11dfaf95e58 (patch)
treed0758deab2599ac3fdfe00e75887b3c97cebb2ac /pkgs/development/interpreters/python
parent2459917e66c70c80e16c315d62b3533c9239a2fa (diff)
parentb27c3af657c9cc41751fd756d1480c783532fb11 (diff)
Merge pull request #269255 from prusnak/rustpython-darwin
rustpython: mark broken on x86_64-darwin
Diffstat (limited to 'pkgs/development/interpreters/python')
-rw-r--r--pkgs/development/interpreters/python/rustpython/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/python/rustpython/default.nix b/pkgs/development/interpreters/python/rustpython/default.nix
index 8ef28b5656d5c..3d10ab361ca3d 100644
--- a/pkgs/development/interpreters/python/rustpython/default.nix
+++ b/pkgs/development/interpreters/python/rustpython/default.nix
@@ -38,5 +38,10 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://rustpython.github.io";
     license = licenses.mit;
     maintainers = with maintainers; [ prusnak ];
+    #   = note: Undefined symbols for architecture x86_64:
+    #       "_utimensat", referenced from:
+    #           rustpython_vm::function::builtin::IntoPyNativeFn::into_func::... in
+    #           rustpython-10386d81555652a7.rustpython_vm-f0b5bedfcf056d0b.rustpython_vm.7926b68e665728ca-cgu.08.rcgu.o.rcgu.o
+    broken = stdenv.isDarwin && stdenv.isx86_64;
   };
 }