diff options
author | Emile <git@emile.space> | 2025-02-10 19:37:43 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2025-02-10 19:37:43 +0100 |
commit | afd36efc693228276f66db755af7661135b0c292 (patch) | |
tree | dec7fb09723b20acac6d632ff3edd2553bc452fc | |
parent | e28f1af00c0fd0f8dcb0d432ff792cae7d8b4553 (diff) |
hacknix: update burp jre version
-rw-r--r-- | nix/hosts/hacknix/burpsuitepro/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/hosts/hacknix/burpsuitepro/default.nix b/nix/hosts/hacknix/burpsuitepro/default.nix index 8c9605d..a2b76b7 100644 --- a/nix/hosts/hacknix/burpsuitepro/default.nix +++ b/nix/hosts/hacknix/burpsuitepro/default.nix @@ -19,7 +19,7 @@ pkgs.stdenvNoCC.mkDerivation rec { eval "$(${pkgs.unzip}/bin/unzip -p ${src} chromium.properties)" mkdir -p "$HOME/.BurpSuite/burpbrowser/$linux64" ln -sf "${pkgs.chromium}/bin/chromium" "$HOME/.BurpSuite/burpbrowser/$linux64/chrome" - exec ${pkgs.jdk19}/bin/java -jar ${src} "$@"' > $out/bin/burpsuitepro + exec ${pkgs.jdk23}/bin/java -jar ${src} "$@"' > $out/bin/burpsuitepro chmod +x $out/bin/${pname} runHook postInstall ''; @@ -38,7 +38,7 @@ pkgs.stdenvNoCC.mkDerivation rec { downloadPage = "https://portswigger.net/burp/freedownload"; sourceProvenance = with sourceTypes; [ binaryBytecode ]; #license = licenses.unfree; - platforms = pkgs.jdk19.meta.platforms; + platforms = pkgs.jdk23.meta.platforms; hydraPlatforms = [ ]; maintainers = with maintainers; [ hanemile ]; }; |