Merge pull request #174042 from risicle/ris-chipsec-x86

chipsec: restrict to x86-only
main
Robert Scott 2 years ago committed by GitHub
commit dc706dddd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkgs/tools/security/chipsec/default.nix

@ -68,6 +68,6 @@ python3.pkgs.buildPythonApplication rec {
license = licenses.gpl2Only;
homepage = "https://github.com/chipsec/chipsec";
maintainers = with maintainers; [ johnazoidberg ];
platforms = if withDriver then [ "x86_64-linux" ] else platforms.all;
platforms = [ "x86_64-linux" ] ++ lib.optional (!withDriver) "x86_64-darwin";
};
}

Loading…
Cancel
Save