about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-11-19 15:49:00 -0500
committerfigsoda <figsoda@pm.me>2023-11-19 15:58:35 -0500
commit01ba168f065affde170603f494505b14c436cb46 (patch)
tree666f9f2ec8793018aad7efc1b3ae90d1aa0ed3d7 /pkgs/tools/security
parent6104170b8cdec8a76f8d64b8eb6d599d70a3c2d4 (diff)
downloadnixlib-01ba168f065affde170603f494505b14c436cb46.tar
nixlib-01ba168f065affde170603f494505b14c436cb46.tar.gz
nixlib-01ba168f065affde170603f494505b14c436cb46.tar.bz2
nixlib-01ba168f065affde170603f494505b14c436cb46.tar.lz
nixlib-01ba168f065affde170603f494505b14c436cb46.tar.xz
nixlib-01ba168f065affde170603f494505b14c436cb46.tar.zst
nixlib-01ba168f065affde170603f494505b14c436cb46.zip
cherrybomb: 1.0.0 -> 1.0.1
Diff: https://diff.rs/cherrybomb/1.0.0/1.0.1

Changelog: https://github.com/blst-security/cherrybomb/releases/tag/v1.0.1
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/cherrybomb/default.nix16
1 files changed, 4 insertions, 12 deletions
diff --git a/pkgs/tools/security/cherrybomb/default.nix b/pkgs/tools/security/cherrybomb/default.nix
index 9f1478a8d231..4bb975d3394c 100644
--- a/pkgs/tools/security/cherrybomb/default.nix
+++ b/pkgs/tools/security/cherrybomb/default.nix
@@ -1,30 +1,22 @@
 { lib
 , rustPlatform
 , fetchCrate
-, pkg-config
-, openssl
 , stdenv
 , darwin
 }:
 
 rustPlatform.buildRustPackage rec {
   pname = "cherrybomb";
-  version = "1.0.0";
+  version = "1.0.1";
 
   src = fetchCrate {
     inherit pname version;
-    hash = "sha256-qZ1eKcRAwCzrzvw6QR28oZ8sGnsXmoOW/bWLQTlpqlo=";
+    hash = "sha256-MHKBP102U1Ug9wZm9x4+opZgG8f6Hx03FvoLV4qaDgY=";
   };
 
-  cargoHash = "sha256-eosK7MQ3UB8rxKHCrb3s3+BVarv19h0cL+uzwg95Hc8=";
+  cargoHash = "sha256-pj4+rG8XbrxVuNgnTVUTPmgrPBRSnoBnqFhOO/JGGWI=";
 
-  nativeBuildInputs = [
-    pkg-config
-  ];
-
-  buildInputs = [
-    openssl
-  ] ++ lib.optionals stdenv.isDarwin [
+  buildInputs = lib.optionals stdenv.isDarwin [
     darwin.apple_sdk.frameworks.Security
   ];