cyberchef 9.55.0 -> 10.4.0 https://github.com/gchq/CyberChef/releases attrpath: cyberchef Checking auto update branch... No auto update branch exists Old version 9.55.0" not present in master derivation file with contents: { lib , fetchzip , stdenv }: stdenv.mkDerivation rec { pname = "cyberchef"; version = "10.2.0"; src = fetchzip { url = "https://github.com/gchq/CyberChef/releases/download/v${version}/CyberChef_v${version}.zip"; sha256 = "sha256-Qom8NRy46EoZtXcdA716yO48GVemloEBlXxEFMB3g10="; 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; }; }