about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang2023-03-29 00:21:51 +0300
committerGitHub2023-03-29 00:21:51 +0300
commit4cb818442a7ef30264e7bdde8122a35717ede764 (patch)
treea148c20c2be24cf5fa1ba0ce8155a8b50b2ae08f
parent9c80daca47fe96f569e1ccafc7939d62a3a90faa (diff)
parent5d315417f20eb31842cf524bc480f3429adb9d3f (diff)
Merge pull request #223017 from r-ryantm/auto-update/cyberchef
cyberchef: 9.55.0 -> 10.2.0
-rw-r--r--pkgs/tools/misc/cyberchef/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/tools/misc/cyberchef/default.nix b/pkgs/tools/misc/cyberchef/default.nix
index c229667db474..c34bc26b0e7a 100644
--- a/pkgs/tools/misc/cyberchef/default.nix
+++ b/pkgs/tools/misc/cyberchef/default.nix
@@ -1,12 +1,15 @@
-{ lib, fetchzip, stdenv }:
+{ lib
+, fetchzip
+, stdenv
+}:
 
 stdenv.mkDerivation rec {
   pname = "cyberchef";
-  version = "9.55.0";
+  version = "10.2.0";
 
   src = fetchzip {
     url = "https://github.com/gchq/CyberChef/releases/download/v${version}/CyberChef_v${version}.zip";
-    sha256 = "sha256-nJes11d/KqQH6pCGIEwlEeP0BjsUr9bo5rBoEoB0IZk=";
+    sha256 = "sha256-Qom8NRy46EoZtXcdA716yO48GVemloEBlXxEFMB3g10=";
     stripRoot = false;
   };
 
@@ -19,6 +22,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.";
     homepage = "https://gchq.github.io/CyberChef";
+    changelog = "https://github.com/gchq/CyberChef/blob/v${version}/CHANGELOG.md";
     maintainers = with maintainers; [ sebastianblunt ];
     license = licenses.asl20;
     platforms = platforms.all;