chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / wi / wizer / package.nix
blob4aaad29db5669d6ee94c0c024125f201c2e8c7a4
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , testers
5 , wizer
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "wizer";
10   version = "7.0.5";
12   # the crate does not contain files which are necessary for the tests
13   # see https://github.com/bytecodealliance/wizer/commit/3a95e27ce42f1fdaef07b52988e4699eaa221e04
14   src = fetchFromGitHub {
15     owner = "bytecodealliance";
16     repo = "wizer";
17     rev = "refs/tags/v${version}";
18     hash = "sha256-bx8V/jaKDpJdWRwYm6GrjsdXQpDyTulRMKVnQZlqLNE=";
19   };
21   cargoHash = "sha256-8iQ6ULdle8tJDPgIoPT9R3jfS32tBBfs4vZNQcV8vfs=";
23   cargoBuildFlags = [ "--bin" pname ];
25   buildFeatures = [ "env_logger" "structopt" ];
27   # Setting $HOME to a temporary directory is necessary to prevent checks from failing, as
28   # the test suite creates a cache directory at $HOME/Library/Caches/BytecodeAlliance.wasmtime.
29   preCheck = ''
30     export HOME=$(mktemp -d)
31   '';
33   passthru.tests = {
34     version = testers.testVersion { package = wizer; };
35   };
37   meta = with lib; {
38     description = "WebAssembly pre-initializer";
39     mainProgram = "wizer";
40     homepage = "https://github.com/bytecodealliance/wizer";
41     license = licenses.asl20;
42     maintainers = with maintainers; [ lucperkins amesgen ];
43   };