Merge pull request #173770 from 06kellyjac/syft

syft: mark x86_64-darwin broken
main
Janne Heß 2 years ago committed by GitHub
commit 6c0e5e4abb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      pkgs/tools/admin/syft/default.nix

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
{ lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
buildGoModule rec {
pname = "syft";
@ -74,5 +74,8 @@ buildGoModule rec {
'';
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ jk ];
# Need updated macOS SDK
# https://github.com/NixOS/nixpkgs/issues/101229
broken = (stdenv.isDarwin && stdenv.isx86_64);
};
}

Loading…
Cancel
Save