biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-bolero / default.nix
blobc242732b237bb13c31a39266d2ed2b11a74978ba
1 { lib, rustPlatform, fetchCrate, libbfd, libopcodes, libunwind }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-bolero";
5   version = "0.9.0";
7   src = fetchCrate {
8     inherit pname version;
9     sha256 = "sha256-BuqbM55P/st+4XUSCwrqILUUCfwvSlxhKQFO+IZLa8U=";
10   };
12   cargoSha256 = "sha256-+TxMOKoId13meXqmr1QjDZMNqBnPEDQF1VSPheq8Ji0=";
14   buildInputs = [ libbfd libopcodes libunwind ];
16   meta = with lib; {
17     description = "Fuzzing and property testing front-end framework for Rust";
18     mainProgram = "cargo-bolero";
19     homepage = "https://github.com/camshaft/bolero";
20     license = with licenses; [ mit ];
21     maintainers = with maintainers; [ ekleog ];
22   };