python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / wizer / default.nix
blobf79c96f54518480697562f571f9ec01636281308
1 { lib, stdenv, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "wizer";
5   version = "1.4.0";
7   src = fetchCrate {
8     inherit pname version;
10     sha256 = "sha256-3Hc3KKqtbZtvD+3lb/W7+AyrwPukJyxpUe94KGQlzBI=";
11   };
13   cargoSha256 = "sha256-zv36/W7dNpIupYn8TS+NaF7uX+BVjrI6AW6Hrlqr8Xg=";
15   cargoBuildFlags = [ "--bin" pname ];
17   buildFeatures = [ "env_logger" "structopt" ];
19   # Setting $HOME to a temporary directory is necessary to prevent checks from failing, as
20   # the test suite creates a cache directory at $HOME/Library/Caches/BytecodeAlliance.wasmtime.
21   preCheck = ''
22     export HOME=$(mktemp -d)
23   '';
25   meta = with lib; {
26     description = "The WebAssembly pre-initializer";
27     homepage = "https://github.com/bytecodealliance/wizer";
28     license = licenses.asl20;
29     maintainers = with maintainers; [ lucperkins ];
30     broken = stdenv.isx86_64 && stdenv.isDarwin;
31   };