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

Merge staging-next into staging

parents ff83c7de 84295459
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension {
  mktplcRef = {
    name = "claude-code";
    publisher = "anthropic";
    version = "2.0.44";
    hash = "sha256-XsmHGsAlUWuLd9WqeWA4bW40gy62h7TCffiG9zOndPA=";
    version = "2.0.46";
    hash = "sha256-fa6/yU2JZChTzOc0oFfjb61fTvbJBAtvea1XWL2dqrM=";
  };

  meta = {
+0 −10
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
  lib,
  stdenv,
  fetchurl,
  fetchpatch,
  meson,
  ninja,
  pkg-config,
@@ -42,15 +41,6 @@ stdenv.mkDerivation rec {
    hash = "sha256-fzdKajjNcP9LMsnToDEL+oBNlG/tTJ5pp9SfrNy5Xpw=";
  };

  # TODO apply unconditionally on rebuild
  patches = lib.optionals stdenv.isDarwin [
    (fetchpatch {
      name = "timersub.patch";
      url = "https://github.com/GNOME/at-spi2-core/commit/02108ea1b96db0189b2d4a9eceb843e1f13b7bdf.diff";
      hash = "sha256-pVBhawfRnJoXmovl9CAmzh+YWJkbvlOVrCs8XanjP00=";
    })
  ];

  nativeBuildInputs = [
    glib
    meson
+2 −2
Original line number Diff line number Diff line
{
  "name": "@anthropic-ai/claude-code",
  "version": "2.0.44",
  "version": "2.0.46",
  "lockfileVersion": 3,
  "requires": true,
  "packages": {
    "": {
      "name": "@anthropic-ai/claude-code",
      "version": "2.0.44",
      "version": "2.0.46",
      "license": "SEE LICENSE IN README.md",
      "bin": {
        "claude": "cli.js"
+3 −3
Original line number Diff line number Diff line
@@ -7,14 +7,14 @@
}:
buildNpmPackage (finalAttrs: {
  pname = "claude-code";
  version = "2.0.44";
  version = "2.0.46";

  src = fetchzip {
    url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${finalAttrs.version}.tgz";
    hash = "sha256-4MRaH/Dbm9z0xvnfRMdi8u39eeHaTMh6y7h5AtLYNXs=";
    hash = "sha256-VwnR+bGSjuACdb+lTWbPnfG7HBagbWJ0Fe0pjPaQ/cM=";
  };

  npmDepsHash = "sha256-nI5xv1VJKcssGHO5IrFBHELREePiYFWAuE/mebIgp0Q=";
  npmDepsHash = "sha256-VT6dta8IrsqrvKWlOcNamxuZaBj+TSJpzlSqw8S81iA=";

  postPatch = ''
    cp ${./package-lock.json} package-lock.json
+2 −2
Original line number Diff line number Diff line
@@ -15,11 +15,11 @@

stdenv.mkDerivation rec {
  pname = "ddcutil";
  version = "2.2.2";
  version = "2.2.3";

  src = fetchurl {
    url = "https://www.ddcutil.com/tarballs/ddcutil-${version}.tar.gz";
    hash = "sha256-KTChTw80jARrghtbJAcksC5H0ElOTrkICBkexVW+K3M=";
    hash = "sha256-4XvAUqYvnqhS2eOLpPHtfnNmVnoOGdvhpDnuca2+BqA=";
  };

  nativeBuildInputs = [
Loading