about summary refs log tree commit diff
path: root/pkgs/tools/security/cherrybomb/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/security/cherrybomb/default.nix')
-rw-r--r--pkgs/tools/security/cherrybomb/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/tools/security/cherrybomb/default.nix b/pkgs/tools/security/cherrybomb/default.nix
deleted file mode 100644
index 139ac5aea1ad..000000000000
--- a/pkgs/tools/security/cherrybomb/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ 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 = "CLI tool that helps you avoid undefined user behavior by validating your API specifications";
-    mainProgram = "cherrybomb";
-    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 ];
-  };
-}