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

Merge master into staging-nixos

parents dbe0cf5d 05e9da8f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -143,6 +143,8 @@

- `n8n` has been updated to version 2. You can find the breaking changes here: https://docs.n8n.io/2-0-breaking-changes/.

- `nomad` has been updated to v1.11. Refer to the [release note](https://developer.hashicorp.com/nomad/docs/release-notes/nomad/v1-11-x) for more details. Once a new Nomad version has started and upgraded it's data directory, it generally cannot be downgraded to the previous version.

- The default NVIDIA drivers no longer support Maxwell (GTX 1xxx) or older GPUs. Pin the nvidia package to ` config.boot.kernelPackages.nvidiaPackages.legacy_580` for continued support.

- `gurk-rs` has been updated from `0.6.4` to `0.8.0`. Version `0.8.0` includes breaking changes. For more information read the [release notes for 0.8.0](https://github.com/boxdot/gurk-rs/releases/tag/v0.8.0).
+18 −0
Original line number Diff line number Diff line
@@ -3635,6 +3635,11 @@
    githubId = 114744388;
    name = "bloominstrong";
  };
  blooym = {
    name = "Lyna";
    github = "Blooym";
    githubId = 19539165;
  };
  bloveless = {
    email = "brennon.loveless@gmail.com";
    github = "bloveless";
@@ -27993,6 +27998,13 @@
    githubId = 2130305;
    name = "Marek Fajkus";
  };
  turebentzin = {
    name = "Ture Bentzin";
    email = "ture.bentzin@alumni.fh-aachen.de";
    github = "turebentzin";
    githubId = 38729194;
    keys = [ { fingerprint = "4868 4B0F D531 473E C82A  641E F1E6 70A1 ED8E 92CE"; } ];
  };
  turion = {
    email = "programming@manuelbaerenz.de";
    github = "turion";
@@ -29382,6 +29394,12 @@
    githubId = 9132420;
    keys = [ { fingerprint = "F943 A0BC 720C 5BEF 73CD E02D B398 93FA 5F65 CAE1"; } ];
  };
  wolfram444 = {
    name = "Xabibulloh To'xtayev";
    email = "kamiltox2006@gmail.com";
    github = "woolfram444";
    githubId = 109225370;
  };
  womeier = {
    name = "Wolfgang Meier";
    email = "womeier@posteo.de";
+2 −2
Original line number Diff line number Diff line
@@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension {
  mktplcRef = {
    name = "vscode-augment";
    publisher = "augment";
    version = "0.789.1";
    hash = "sha256-RQg4XnFJhTttphjhR+arfRibCs0Y9ITvryrsq+hvFhQ=";
    version = "0.825.5";
    hash = "sha256-UKkrdxHlbcdpd3RQxNpZVBINZlncPv7e5RETnj/19Ts=";
  };

  meta = {
+3 −3
Original line number Diff line number Diff line
@@ -14,19 +14,19 @@ let
  vsix = stdenvNoCC.mkDerivation (finalAttrs: {
    name = "roo-code-${finalAttrs.version}.vsix";
    pname = "roo-code-vsix";
    version = "3.51.1";
    version = "3.52.0";

    src = fetchFromGitHub {
      owner = "RooCodeInc";
      repo = "Roo-Code";
      tag = "v${finalAttrs.version}";
      hash = "sha256-HpLL466mzDvNf7twW0a3dDUvgveRm0tbCOXGymTW+tA=";
      hash = "sha256-DvuL1WByEJER+v73pCvwNdRNfM8j+c1VQGGjAyV79p8=";
    };

    pnpmDeps = fetchPnpmDeps {
      inherit (finalAttrs) pname version src;
      fetcherVersion = 2;
      hash = "sha256-Q97MDHl22lIF84/J3UW53dCD7oaN3Y6R32xhjRDBmpw=";
      hash = "sha256-kQjxcqHEClQtG6x2QM1/zixN6rvcEivX8vicNydDdOw=";
    };

    nativeBuildInputs = [
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ rec {
  # Upstream partially documents used Go versions here
  # https://github.com/hashicorp/nomad/blob/master/contributing/golang.md

  nomad = nomad_1_10;
  nomad = nomad_1_11;

  nomad_1_11 = generic {
    buildGoModule = buildGo125Module;
Loading