evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / cargo-wasi / package.nix
bloba42b98da2054142c050c876ae5449eeb21ecc6ea
1 { lib
2 , rustPlatform
3 , fetchCrate
4 , pkg-config
5 , stdenv
6 , openssl
7 , darwin
8 }:
10 rustPlatform.buildRustPackage rec {
11   pname = "cargo-wasi";
12   version = "0.1.28";
14   src = fetchCrate {
15     inherit version;
16     pname = "cargo-wasi-src";
17     hash = "sha256-fmQ23BtcBUPNcgZgvNq85iqdY6WRUhqwAp4aIobqMIw=";
18   };
20   cargoHash = "sha256-yXtxznUp2gECq2CvRByiFzbTjYtWvTheDjGoynJWb+o=";
22   nativeBuildInputs = [ pkg-config ];
24   buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ]
25     ++ lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [ Security ]);
27   # Checks need to be disabled here because the current test suite makes assumptions
28   # about the surrounding environment that aren't Nix friendly. See these lines for specifics:
29   # https://github.com/bytecodealliance/cargo-wasi/blob/0.1.28/tests/tests/support.rs#L13-L18
30   doCheck = false;
32   meta = with lib; {
33     description = "Lightweight Cargo subcommand to build code for the wasm32-wasi target";
34     mainProgram = "cargo-wasi";
35     homepage = "https://bytecodealliance.github.io/cargo-wasi";
36     license = licenses.asl20;
37     maintainers = with maintainers; [ lucperkins ];
38   };