bupstash: mark broken on x86_64-darwin

Related to https://github.com/NixOS/nixpkgs/issues/101229
This commit is contained in:
Rick van Schijndel 2022-05-21 15:25:16 +02:00
parent bc286911d8
commit c3fa68c928

View file

@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, installShellFiles, rustPlatform, ronn, pkg-config, libsodium }:
{ stdenv, lib, fetchFromGitHub, installShellFiles, rustPlatform, ronn, pkg-config, libsodium }:
rustPlatform.buildRustPackage rec {
pname = "bupstash";
version = "0.11.0";
@ -28,6 +28,10 @@ rustPlatform.buildRustPackage rec {
homepage = "https://bupstash.io";
license = licenses.mit;
platforms = platforms.unix;
# = note: Undefined symbols for architecture x86_64:
# "_utimensat", referenced from:
# https://github.com/NixOS/nixpkgs/issues/101229
broken = (stdenv.isDarwin && stdenv.isx86_64);
maintainers = with maintainers; [ andrewchambers ];
};
}