Skip to content

Commit 8429545

Browse files
Merge master into staging-next
2 parents e4fd781 + 0f1670e commit 8429545

File tree

12 files changed

+44
-26
lines changed

12 files changed

+44
-26
lines changed

pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension {
77
mktplcRef = {
88
name = "claude-code";
99
publisher = "anthropic";
10-
version = "2.0.44";
11-
hash = "sha256-XsmHGsAlUWuLd9WqeWA4bW40gy62h7TCffiG9zOndPA=";
10+
version = "2.0.46";
11+
hash = "sha256-fa6/yU2JZChTzOc0oFfjb61fTvbJBAtvea1XWL2dqrM=";
1212
};
1313

1414
meta = {

pkgs/by-name/cl/claude-code/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkgs/by-name/cl/claude-code/package.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
}:
88
buildNpmPackage (finalAttrs: {
99
pname = "claude-code";
10-
version = "2.0.44";
10+
version = "2.0.46";
1111

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

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

1919
postPatch = ''
2020
cp ${./package-lock.json} package-lock.json

pkgs/by-name/dd/ddcutil/package.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515

1616
stdenv.mkDerivation rec {
1717
pname = "ddcutil";
18-
version = "2.2.2";
18+
version = "2.2.3";
1919

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

2525
nativeBuildInputs = [

pkgs/by-name/ei/eigenwallet/package.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212

1313
stdenv.mkDerivation (finalAttrs: {
1414
name = "eigenwallet";
15-
version = "3.1.3";
15+
version = "3.3.6";
1616

1717
src = fetchurl {
1818
url = "https://github.com/eigenwallet/core/releases/download/${finalAttrs.version}/eigenwallet_${finalAttrs.version}_amd64.deb";
19-
hash = "sha256-HQqkoyzKqy4eaCfEwwkRUjgex834kkt2OR3Ib16bE0Y=";
19+
hash = "sha256-4Z7tfhpX6E7i1dov8j0czG+aDDrhUN1EtxOq2SOqILQ=";
2020
};
2121

2222
nativeBuildInputs = [

pkgs/by-name/ge/gemini-cli/package.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313

1414
buildNpmPackage (finalAttrs: {
1515
pname = "gemini-cli";
16-
version = "0.15.3";
16+
version = "0.16.0";
1717

1818
src = fetchFromGitHub {
1919
owner = "google-gemini";
2020
repo = "gemini-cli";
2121
tag = "v${finalAttrs.version}";
22-
hash = "sha256-a3zigpALuuqD42n2X+5G+ol1XdSbHwLalS3ArA/cQH8=";
22+
hash = "sha256-EOiG7Ov+tY6UPci4A67kKcCItkTrrENOm1mSaWxKE94=";
2323
};
2424

25-
npmDepsHash = "sha256-KkMnxZ0G8PzIdksChVZoH5jMz8qeyGirN7URq08sz48=";
25+
npmDepsHash = "sha256-JvzrbyiJHbKNRHoGll7eSH4dD6Hj5qnrh4F/upHPntI=";
2626

2727
nativeBuildInputs = [
2828
jq

pkgs/by-name/li/linux-firmware/package.nix

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,13 @@ stdenvNoCC.mkDerivation rec {
5151
# Firmware blobs do not need fixing and should not be modified
5252
dontFixup = true;
5353

54-
meta = with lib; {
54+
meta = {
5555
description = "Binary firmware collection packaged by kernel.org";
5656
homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git";
57-
license = licenses.unfreeRedistributableFirmware;
58-
platforms = platforms.linux;
59-
maintainers = with maintainers; [ fpletz ];
57+
license = lib.licenses.unfreeRedistributableFirmware;
58+
platforms = lib.platforms.linux;
59+
maintainers = with lib.maintainers; [ fpletz ];
6060
priority = 6; # give precedence to kernel firmware
61+
sourceProvenance = with lib.sourceTypes; [ binaryFirmware ];
6162
};
6263
}

pkgs/by-name/ma/markdownlint-cli/package.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66

77
buildNpmPackage rec {
88
pname = "markdownlint-cli";
9-
version = "0.45.0";
9+
version = "0.46.0";
1010

1111
src = fetchFromGitHub {
1212
owner = "igorshubovych";
1313
repo = "markdownlint-cli";
1414
rev = "v${version}";
15-
hash = "sha256-H6vK0ZJarNK9h3T/304SO8HNiZUGdrAA72wA6XPZbPQ=";
15+
hash = "sha256-8yzTdgwKM2xSNJvqpQM/WSFVDVUDdFgpcIxr13thIYQ=";
1616
};
1717

18-
npmDepsHash = "sha256-puRm56VO711HC/CXCfUfODfy7ZVwEhucjwIikiHCf5E=";
18+
npmDepsHash = "sha256-FQKjIAVvaAz4OsCZ1gKNLdHWhANdUKbFsD9HMksVu+U=";
1919

2020
dontNpmBuild = true;
2121

pkgs/by-name/pl/plutovg/package.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
}:
99
stdenv.mkDerivation (finalAttrs: {
1010
pname = "plutovg";
11-
version = "1.3.1";
11+
version = "1.3.2";
1212

1313
src = fetchFromGitHub {
1414
owner = "sammycage";
1515
repo = "plutovg";
1616
tag = "v${finalAttrs.version}";
17-
hash = "sha256-6UW+laVxTYvg+5qC12yA6U6gPKdFQeb7sdDunZ6gcd4=";
17+
hash = "sha256-4TvbNsElDL7WX3yXLDM5nwHFCHQdUclk6HQ5MbPUEZE=";
1818
};
1919

2020
cmakeFlags = [

pkgs/development/libraries/qt-5/modules/qtwebengine.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
bootstrap_cmds,
5858
xcbuild,
5959
writeScriptBin,
60-
ffmpeg ? null,
60+
ffmpeg_7 ? null,
6161
lib,
6262
stdenv,
6363
version ? null,
@@ -354,7 +354,7 @@ qtModule (
354354
icu
355355

356356
libevent
357-
ffmpeg
357+
ffmpeg_7
358358
]
359359
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
360360
dbus

0 commit comments

Comments
 (0)