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

Merge master into staging-next

parents a0e0674e 3ee35cb8
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -8,11 +8,12 @@ vscode-utils.buildVscodeMarketplaceExtension {
  mktplcRef = {
    name = "claude-code";
    publisher = "anthropic";
    version = "2.1.11";
    hash = "sha256-zqCILYNwBudsEv7+7ZV1YQoPJi30kj5w8suXqAPKORo=";
    version = "2.1.15";
    hash = "sha256-BtVxSVp80qlZhMrh872+0DQ7sTskEdP/5p5T7n9jeGU=";
  };

  postInstall = ''
    mkdir -p "$out/$installPrefix/resources/native-binary"
    rm -f "$out/$installPrefix/resources/native-binary/claude"*
    ln -s "${claude-code}/bin/claude" "$out/$installPrefix/resources/native-binary/claude"
  '';
+3 −3
Original line number Diff line number Diff line
@@ -6,16 +6,16 @@

rustPlatform.buildRustPackage rec {
  pname = "adrs";
  version = "0.3.0";
  version = "0.5.0";

  src = fetchFromGitHub {
    owner = "joshrotenberg";
    repo = "adrs";
    tag = "v${version}";
    hash = "sha256-C9Kg7xY3Q0xsd2DlUcc3OM+/hyzmwz55oi6Ul3K7zkM=";
    hash = "sha256-LjuEYOZJzptryjtqmfH5L/BI+9daLPAGSkAkXeE7Z/E=";
  };

  cargoHash = "sha256-Ep1Y2PDNesaDzEc2JNoKZjFSay1utZiNR5eQYhdqiUU=";
  cargoHash = "sha256-mevUqsqFDfF2dMYSdc0eGxh55W7shLSo8e5NpbDI/Zo=";

  meta = {
    description = "Command-line tool for managing Architectural Decision Records";
+2 −2
Original line number Diff line number Diff line
@@ -7,11 +7,11 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "cdk";
  version = "5.0-20251014";
  version = "5.0-20260119";

  src = fetchurl {
    url = "https://invisible-mirror.net/archives/cdk/cdk-${finalAttrs.version}.tgz";
    hash = "sha256-DtRpScaApfQuNCzEiizmC8/CzIue67F2h3takfgpQ1w=";
    hash = "sha256-RrtoRB5pinsfZC4lZJaKdwCv7wOGRCr9XPLnspbTDuU=";
  };

  buildInputs = [
+2 −2
Original line number Diff line number Diff line
@@ -11,14 +11,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "chipsec";
  version = "1.13.17";
  version = "1.13.19";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "chipsec";
    repo = "chipsec";
    tag = version;
    hash = "sha256-8QiFIk9bq/yX26jw9aOd6wtt+WDUwfLBUVD5hL30RKE=";
    hash = "sha256-QJDoUnmZhKimgVnKCarc70b1OZAF3uIKqefuXjD7dOg=";
  };

  patches = [
Loading