cyberchef: init at 9.46.0 (#189242)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
main
Sebastian Blunt 2 years ago committed by GitHub
parent 8a6d60cf09
commit 215b0ce949
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 25
      pkgs/tools/misc/cyberchef/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,25 @@
{ lib, fetchzip, stdenv }:
stdenv.mkDerivation rec {
pname = "cyberchef";
version = "9.46.0";
src = fetchzip {
url = "https://github.com/gchq/CyberChef/releases/download/v${version}/CyberChef_v${version}.zip";
sha256 = "sha256-4IqXp7fYgXwIuciUklrQoRD2XagatdhQ3l6ghjgTCR8=";
stripRoot = false;
};
installPhase = ''
mkdir -p "$out/share/cyberchef"
mv "CyberChef_v${version}.html" index.html
mv * "$out/share/cyberchef"
'';
meta = with lib; {
description = "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.";
homepage = "https://gchq.github.io/CyberChef";
maintainers = with maintainers; [ sebastianblunt ];
license = licenses.asl20;
};
}

@ -2185,6 +2185,8 @@ with pkgs;
crystfel-headless = callPackage ../applications/science/physics/crystfel { withGui = false; };
cyberchef = callPackage ../tools/misc/cyberchef { };
cw = callPackage ../tools/admin/cw { };
ec2-api-tools = callPackage ../tools/virtualization/ec2-api-tools { };

Loading…
Cancel
Save