01ba168f06
Diff: https://diff.rs/cherrybomb/1.0.0/1.0.1 Changelog: https://github.com/blst-security/cherrybomb/releases/tag/v1.0.1
30 lines
795 B
Nix
30 lines
795 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchCrate
|
|
, stdenv
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cherrybomb";
|
|
version = "1.0.1";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-MHKBP102U1Ug9wZm9x4+opZgG8f6Hx03FvoLV4qaDgY=";
|
|
};
|
|
|
|
cargoHash = "sha256-pj4+rG8XbrxVuNgnTVUTPmgrPBRSnoBnqFhOO/JGGWI=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.Security
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A CLI tool that helps you avoid undefined user behavior by validating your API specifications";
|
|
homepage = "https://github.com/blst-security/cherrybomb";
|
|
changelog = "https://github.com/blst-security/cherrybomb/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|