1 { lib, fetchzip, stdenv }:
3 stdenv.mkDerivation rec {
8 url = "https://github.com/gchq/CyberChef/releases/download/v${version}/CyberChef_v${version}.zip";
9 sha256 = "sha256-tKNU+gUcuZMjsQes/vpEpn216/0fWCgb0mgvJ8WWoDQ=";
14 mkdir -p "$out/share/cyberchef"
15 mv "CyberChef_v${version}.html" index.html
16 mv * "$out/share/cyberchef"
20 description = "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.";
21 homepage = "https://gchq.github.io/CyberChef";
22 maintainers = with maintainers; [ sebastianblunt ];
23 license = licenses.asl20;