bupstash: mark broken on x86_64-darwin

Related to https://github.com/NixOS/nixpkgs/issues/101229

+5 -1
+5 -1
pkgs/tools/backup/bupstash/default.nix
··· 1 - { lib, fetchFromGitHub, installShellFiles, rustPlatform, ronn, pkg-config, libsodium }: 1 + { stdenv, lib, fetchFromGitHub, installShellFiles, rustPlatform, ronn, pkg-config, libsodium }: 2 2 rustPlatform.buildRustPackage rec { 3 3 pname = "bupstash"; 4 4 version = "0.11.0"; ··· 28 28 homepage = "https://bupstash.io"; 29 29 license = licenses.mit; 30 30 platforms = platforms.unix; 31 + # = note: Undefined symbols for architecture x86_64: 32 + # "_utimensat", referenced from: 33 + # https://github.com/NixOS/nixpkgs/issues/101229 34 + broken = (stdenv.isDarwin && stdenv.isx86_64); 31 35 maintainers = with maintainers; [ andrewchambers ]; 32 36 }; 33 37 }