evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / cargo-bolero / package.nix
blobcd082dca6c86391d4b5922085658d1103a4516c3
1 { lib, rustPlatform, fetchCrate, libbfd, libopcodes, libunwind, nix-update-script }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-bolero";
5   version = "0.11.2";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-Xcu91CbIDBLSojWQJjvdFWJiqjMteAxF105lemCAipk=";
10   };
12   cargoHash = "sha256-QLtf42Il+XHWeaUdh8jNNWU1sXaVe82sYOKiHLoXw2M=";
14   buildInputs = [ libbfd libopcodes libunwind ];
16   passthru = {
17     updateScript = nix-update-script { };
18   };
20   meta = with lib; {
21     description = "Fuzzing and property testing front-end framework for Rust";
22     mainProgram = "cargo-bolero";
23     homepage = "https://github.com/camshaft/bolero";
24     license = with licenses; [ mit ];
25     maintainers = with maintainers; [ ekleog ];
26   };