Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5ee79ca557b1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ff9a7c6dc1d9
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 16, 2021

  1. burpsuite: 2020.1 -> 2020.12.1

    Moved to Java 11 to avoid warnings when launching Burp Suite.
    Burp Suite only officially supports Java versions 9 to 14 [0].
    
    [0] https://portswigger.net/burp/documentation/desktop/getting-started/launching/command-line#checking-your-java-version
    LeSuisse committed Jan 16, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Copy the full SHA
    2c29f2a View commit details

Commits on Jan 17, 2021

  1. Merge pull request #109549 from LeSuisse/bursuite-2020.12.1

    burpsuite: 2020.1 -> 2020.12.1
    SuperSandro2000 authored Jan 17, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Copy the full SHA
    ff9a7c6 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/tools/networking/burpsuite/default.nix
10 changes: 5 additions & 5 deletions pkgs/tools/networking/burpsuite/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ lib, stdenv, fetchurl, jre, runtimeShell }:
{ lib, stdenv, fetchurl, jdk11, runtimeShell }:

let
version = "2020.1";
version = "2020.12.1";
jar = fetchurl {
name = "burpsuite.jar";
url = "https://portswigger.net/Burp/Releases/Download?productId=100&version=${version}&type=Jar";
sha256 = "12awfy0f8fyqjc0kza1gkmdx1g8bniw1xqaps2dhjimi6s0lq5jx";
sha256 = "1vdxwasvcyxyyidq3cfjphzkir358sxikgvxgl36czylap4hzjh1";
};
launcher = ''
#!${runtimeShell}
exec ${jre}/bin/java -jar ${jar} "$@"
exec ${jdk11}/bin/java -jar ${jar} "$@"
'';
in stdenv.mkDerivation {
pname = "burpsuite";
@@ -33,7 +33,7 @@ in stdenv.mkDerivation {
homepage = "https://portswigger.net/burp/";
downloadPage = "https://portswigger.net/burp/freedownload";
license = [ lib.licenses.unfree ];
platforms = jre.meta.platforms;
platforms = jdk11.meta.platforms;
hydraPlatforms = [];
maintainers = with lib.maintainers; [ bennofs ];
};