Unverified Commit 016c52f8 authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

Merge master into staging-next

parents 1699460b 518168cb
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -11785,12 +11785,6 @@
    githubId = 4599384;
    name = "Jack Baldry";
  };
  jdehaas = {
    email = "qqlq@nullptr.club";
    github = "jeroendehaas";
    githubId = 117874;
    name = "Jeroen de Haas";
  };
  jdelStrother = {
    email = "me@delstrother.com";
    github = "jdelStrother";
@@ -14409,12 +14403,11 @@
    name = "Leiser Fernández Gallo";
  };
  leixb = {
    email = "abone9999+nixpkgs@gmail.com";
    email = "abone9999@gmail.com";
    matrix = "@leix_b:matrix.org";
    github = "Leixb";
    githubId = 17183803;
    name = "Aleix Boné";
    keys = [ { fingerprint = "63D3 F436 EDE8 7E1F 1292  24AF FC03 5BB2 BB28 E15D"; } ];
  };
  lejonet = {
    email = "daniel@kuehn.se";
+4 −4
Original line number Diff line number Diff line
@@ -57,19 +57,19 @@ in
              type = "custom";
              status = {
                source = "script";
                cmd = "/bin/sh -c 'echo charger status A'";
                cmd = "/bin/sh -c 'echo A'";
              };
              enabled = {
                source = "script";
                cmd = "/bin/sh -c 'echo charger enabled state false'";
                cmd = "/bin/sh -c 'echo false'";
              };
              enable = {
                source = "script";
                cmd = "/bin/sh -c 'echo set charger enabled state true'";
                cmd = "/bin/sh -c 'echo true'";
              };
              maxcurrent = {
                source = "script";
                cmd = "/bin/sh -c 'echo set charger max current 7200'";
                cmd = "/bin/sh -c 'echo 7200'";
              };
            }
          ];
+3 −3
Original line number Diff line number Diff line
@@ -9,20 +9,20 @@
}:

let
  version = "2025.9.1";
  version = "2025.9.3";

  product =
    if proEdition then
      {
        productName = "pro";
        productDesktop = "Burp Suite Professional Edition";
        hash = "sha256-24XijVTFmDshv7TYDW05igUOWfJeHT7z8F8fTCBONoM=";
        hash = "sha256-gLcSx+AZdHW+LP4kPez1KVamTrp7IfGMF/caHDKAxK4=";
      }
    else
      {
        productName = "community";
        productDesktop = "Burp Suite Community Edition";
        hash = "sha256-z65+1erFeO3ZOJRGZ+vdbDxfNpo36eIp6yQskItBl1A=";
        hash = "sha256-LmlmQ6UaIFMGFIFI9r7i9LV81ZcisuNygJo3/oUaWSM=";
      };

  src = fetchurl {
+2 −2
Original line number Diff line number Diff line
@@ -9,13 +9,13 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "cpp-utilities";
  version = "5.30.0";
  version = "5.31.0";

  src = fetchFromGitHub {
    owner = "Martchus";
    repo = "cpp-utilities";
    rev = "v${finalAttrs.version}";
    sha256 = "sha256-cBr9Vw0UnC2+x/VSvL8u5hsvgk5RdY/3/KCUFQy24rg=";
    sha256 = "sha256-UjF1b1LCPwrUzqVZNbtX+5eFAzc6NgLyBzTcNHNlkvs=";
  };

  nativeBuildInputs = [ cmake ];
+2 −2
Original line number Diff line number Diff line
@@ -7,13 +7,13 @@
}:
llvmPackages.stdenv.mkDerivation rec {
  pname = "enzyme";
  version = "0.0.196";
  version = "0.0.201";

  src = fetchFromGitHub {
    owner = "EnzymeAD";
    repo = "Enzyme";
    rev = "v${version}";
    hash = "sha256-Jrp1DjwMzi8+ZWJVwhZ4SH2phLvrYfY6+29n//z9bUg=";
    hash = "sha256-TUGWQImDtXOOkEt20719OheKlPgWjEVdqTh/ET/c1cs=";
  };

  postPatch = ''
Loading