depot/third_party/nixpkgs/pkgs/tools/misc/cyberchef/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

30 lines
847 B
Nix

{ lib
, fetchzip
, stdenv
}:
stdenv.mkDerivation rec {
pname = "cyberchef";
version = "10.18.3";
src = fetchzip {
url = "https://github.com/gchq/CyberChef/releases/download/v${version}/CyberChef_v${version}.zip";
sha256 = "sha256-HLYcKF+DCj5QA+0ZJwRpC+iTN5z/S249UnQirNJMLF4=";
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";
changelog = "https://github.com/gchq/CyberChef/blob/v${version}/CHANGELOG.md";
maintainers = with maintainers; [ sebastianblunt ];
license = licenses.asl20;
platforms = platforms.all;
};
}