appflowy: browser login redirect (#376016)
[NixPkgs.git] / pkgs / by-name / ca / cargo-bolero / package.nix
blob4d18ec63ae603eb7a9b1e77198e5f4640d7bcbc8
2   lib,
3   rustPlatform,
4   fetchCrate,
5   libbfd,
6   libopcodes,
7   libunwind,
8   nix-update-script,
9 }:
11 rustPlatform.buildRustPackage rec {
12   pname = "cargo-bolero";
13   version = "0.12.0";
15   src = fetchCrate {
16     inherit pname version;
17     hash = "sha256-ta0H6V7Zg/Jnu3973eYJXGwwQcqZnDTlsmWAHkQr2EA=";
18   };
20   cargoHash = "sha256-5F72vjEu0qrE3fYPbiw/UFUUnAZcEBcuhDkuqqCBbrM=";
22   buildInputs = [
23     libbfd
24     libopcodes
25     libunwind
26   ];
28   passthru = {
29     updateScript = nix-update-script { };
30   };
32   meta = with lib; {
33     description = "Fuzzing and property testing front-end framework for Rust";
34     mainProgram = "cargo-bolero";
35     homepage = "https://github.com/camshaft/bolero";
36     license = with licenses; [ mit ];
37     maintainers = with maintainers; [ ekleog ];
38   };