From bb3a41f312d0a25779a544935440f9a9897071da Mon Sep 17 00:00:00 2001 From: Yueh-Shun Li Date: Mon, 3 Feb 2025 05:21:37 +0800 Subject: [PATCH 001/168] buildPython*: fix the disabled functionality for overrideAttrs- --- .../python/mk-python-derivation.nix | 20 ++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/pkgs/development/interpreters/python/mk-python-derivation.nix b/pkgs/development/interpreters/python/mk-python-derivation.nix index 09d2e52d276a..53a45d2ff910 100644 --- a/pkgs/development/interpreters/python/mk-python-derivation.nix +++ b/pkgs/development/interpreters/python/mk-python-derivation.nix @@ -452,11 +452,21 @@ let # This derivation transformation function must be independent to `attrs` # for fixed-point arguments support in the future. transformDrv = - drv: - extendDerivation ( - drv.disabled - -> throw "${removePrefix namePrefix drv.name} not supported for interpreter ${python.executable}" - ) { } (toPythonModule drv); + let + # Workaround to make the `lib.extendDerivation`-based disabled functionality + # respect `.overrideAttrs` + # It doesn't cover `..overrideAttrs`. + disablePythonPackage = + drv: + extendDerivation ( + drv.disabled + -> throw "${removePrefix namePrefix drv.name} not supported for interpreter ${python.executable}" + ) { } drv + // { + overrideAttrs = fdrv: disablePythonPackage (drv.overrideAttrs fdrv); + }; + in + drv: disablePythonPackage (toPythonModule drv); in transformDrv self From 9c90ae9f23d14e0ece9f614e3045dcc9ad941288 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 19 May 2025 09:40:30 +0200 Subject: [PATCH 002/168] ocamlPackages.google-drive-ocamlfuse: fix checks --- pkgs/applications/networking/google-drive-ocamlfuse/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix index 48af19cc590f..48d683e14f21 100644 --- a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix +++ b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix @@ -22,7 +22,7 @@ buildDunePackage rec { hash = "sha256-AWr1tcium70rXFKMTv6xcWxndOJua3UXG8Q04TN1Siw="; }; - doCheck = lib.versionOlder ocaml.version "5.0"; + doCheck = lib.versionAtLeast ocaml.version "5"; checkInputs = [ ounit2 ]; buildInputs = [ From 65e45c782c043f37419cc45fcf7f4077490ea54e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 01:22:26 +0000 Subject: [PATCH 003/168] mailpit: 1.24.2 -> 1.25.0 --- pkgs/servers/mail/mailpit/source.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/mail/mailpit/source.nix b/pkgs/servers/mail/mailpit/source.nix index 70d1e838d833..9920aa0857c3 100644 --- a/pkgs/servers/mail/mailpit/source.nix +++ b/pkgs/servers/mail/mailpit/source.nix @@ -1,6 +1,6 @@ { - version = "1.24.2"; - hash = "sha256-MRoo06As8gZkpeeRwoLThCrGdwKeS++6u877TDsZFqs="; - npmDepsHash = "sha256-502v1nEI6sYMttdpxPtjqOuN34HvI38RRbRLE3a0Dio="; - vendorHash = "sha256-UPp5c4KW3HQ0VE9Sk488mUpKzIxdfV4ScTSmdqxc4pU="; + version = "1.25.0"; + hash = "sha256-9awjtNEW29Fc2V2YNWY9JYCyyGl+ay47TRAvIrSlIC4="; + npmDepsHash = "sha256-1Z63JqNIy2rpY65tVLqMOkgf+DV1NfwT88kA9hMPklA="; + vendorHash = "sha256-c5RylS+VRV9JMEyLV9XroKG43koTrlDVcOAm4iqKlkI="; } From 3ec885597da6963a7c7aaf29195b7c9780e497d8 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 21 May 2025 03:52:54 +0200 Subject: [PATCH 004/168] paraview: require big-parallel system feature --- pkgs/applications/graphics/paraview/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/graphics/paraview/default.nix b/pkgs/applications/graphics/paraview/default.nix index d62b20303b21..6a04470707d6 100644 --- a/pkgs/applications/graphics/paraview/default.nix +++ b/pkgs/applications/graphics/paraview/default.nix @@ -123,6 +123,9 @@ stdenv.mkDerivation rec { )) ]; + # 23k objects, >4h on a normal build slot + requiredSystemFeatures = [ "big-parallel" ]; + meta = { homepage = "https://www.paraview.org"; description = "3D Data analysis and visualization application"; From 8a05fa5038f2acf39a403bd9121d3266cca8c14f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 02:48:34 +0000 Subject: [PATCH 005/168] git-cola: 4.12.0 -> 4.13.0 --- pkgs/by-name/gi/git-cola/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gi/git-cola/package.nix b/pkgs/by-name/gi/git-cola/package.nix index ee9ef77c5dc2..530a24027a0c 100644 --- a/pkgs/by-name/gi/git-cola/package.nix +++ b/pkgs/by-name/gi/git-cola/package.nix @@ -12,14 +12,14 @@ python3Packages.buildPythonApplication rec { pname = "git-cola"; - version = "4.12.0"; + version = "4.13.0"; pyproject = true; src = fetchFromGitHub { owner = "git-cola"; repo = "git-cola"; tag = "v${version}"; - hash = "sha256-1y/fYqvsPpgCEakL7XepI9SVPFgmk1m795uMPv1WgNc="; + hash = "sha256-FoCU10EKeNltYh7AEOR+98ryVA6rFVfCDMg5QUSpF0w="; }; buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ qt5.qtwayland ]; From 17556ebe18e2a48b99e99f7c28f04144f5776d26 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 21 May 2025 12:59:39 +0200 Subject: [PATCH 006/168] python312Packages.publicsuffixlist: 1.0.2.20250519 -> 1.0.2.20250521 Changelog: https://github.com/ko-zu/psl/blob/v1.0.2.20250521-gha/CHANGES.md --- pkgs/development/python-modules/publicsuffixlist/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/publicsuffixlist/default.nix b/pkgs/development/python-modules/publicsuffixlist/default.nix index 152708fc1d32..c3b2e4f2d183 100644 --- a/pkgs/development/python-modules/publicsuffixlist/default.nix +++ b/pkgs/development/python-modules/publicsuffixlist/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "publicsuffixlist"; - version = "1.0.2.20250519"; + version = "1.0.2.20250521"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-bgJr5HAT258suKJdr3TR0+YYDHTcaXCMk2SJS/bwF+s="; + hash = "sha256-iQWEhXvCHN1HTWzM9z4r43HCD7noRPyIWtvdlX6ZCCk="; }; build-system = [ setuptools ]; From bead97f7da88d3385ce5864916fa4242d00a170c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 12:35:58 +0000 Subject: [PATCH 007/168] lout: 3.43.1 -> 3.43.2 --- pkgs/by-name/lo/lout/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/lo/lout/package.nix b/pkgs/by-name/lo/lout/package.nix index 44b01867093c..38abe5edf0cf 100644 --- a/pkgs/by-name/lo/lout/package.nix +++ b/pkgs/by-name/lo/lout/package.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "lout"; - version = "3.43.1"; + version = "3.43.2"; src = fetchFromGitHub { owner = "william8000"; repo = "lout"; rev = version; - hash = "sha256-bXLhkJqhv8pftDZYv6vn9ycy5u3vde+m3gCPvWJz2M8="; + hash = "sha256-8WMRnlb1EGtUo8g9yoIBinKb1ICZMqUZka/5950Lc1M="; }; buildInputs = [ ghostscript ]; From 5018f46846ffa43142d8a4affe90fb103f9eef27 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 12:46:53 +0000 Subject: [PATCH 008/168] c2patool: 0.16.5 -> 0.17.0 --- pkgs/by-name/c2/c2patool/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/c2/c2patool/package.nix b/pkgs/by-name/c2/c2patool/package.nix index 1448d1cefcb0..7d6045fce81f 100644 --- a/pkgs/by-name/c2/c2patool/package.nix +++ b/pkgs/by-name/c2/c2patool/package.nix @@ -10,17 +10,17 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "c2patool"; - version = "0.16.5"; + version = "0.17.0"; src = fetchFromGitHub { owner = "contentauth"; repo = "c2pa-rs"; tag = "c2patool-v${finalAttrs.version}"; - hash = "sha256-W9I7I4sukKBg4seRyn9iXoNhkRoSKcjbpjgZjvQKCGw="; + hash = "sha256-DuRoafg4BBxZFgYeS9IHsazHA5rHucnoBhVu9BkyTRc="; }; useFetchCargoVendor = true; - cargoHash = "sha256-C5PkwMfP/MyO8QlQk0DwkU2Z/u/FdJIvwpE3gseUG/Q="; + cargoHash = "sha256-7NWBt7qUivSBmpw83TNCxiYZMGPcNfGrmIN5m+S+QeY="; # use the non-vendored openssl env.OPENSSL_NO_VENDOR = 1; From edf40f84789c3f9b61c8ddc3d6de9a773727e143 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 12:57:21 +0000 Subject: [PATCH 009/168] sqlcmd: 1.8.2 -> 1.8.3 --- pkgs/by-name/sq/sqlcmd/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sq/sqlcmd/package.nix b/pkgs/by-name/sq/sqlcmd/package.nix index bb27d50a6870..f58bd9170523 100644 --- a/pkgs/by-name/sq/sqlcmd/package.nix +++ b/pkgs/by-name/sq/sqlcmd/package.nix @@ -9,16 +9,16 @@ buildGoModule rec { pname = "sqlcmd"; - version = "1.8.2"; + version = "1.8.3"; src = fetchFromGitHub { repo = "go-sqlcmd"; owner = "microsoft"; rev = "v${version}"; - sha256 = "sha256-LHNH/Jybtv+P/mRby3/nn8XjDHYWDTtgefb8z35J2VM="; + sha256 = "sha256-UucXy6qpoHRfCEY5VGtcIF0VF2mrWBfsMg6wl80r22M="; }; - vendorHash = "sha256-UeeCs3lm7jFO7QRtEhHG2JFLNd3CJB26PwF0dKrZQ78="; + vendorHash = "sha256-bTfUWBCNNWIi7tzDvYW1y0+I/498DP1Tlp4zWq7g5uY="; proxyVendor = true; ldflags = [ From 6f8738485a9742e470a1ed339752b0db4cb74617 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 13:01:27 +0000 Subject: [PATCH 010/168] python3Packages.bump-my-version: 1.1.2 -> 1.1.4 --- pkgs/development/python-modules/bump-my-version/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/bump-my-version/default.nix b/pkgs/development/python-modules/bump-my-version/default.nix index 6512250417fb..e489bec62edf 100644 --- a/pkgs/development/python-modules/bump-my-version/default.nix +++ b/pkgs/development/python-modules/bump-my-version/default.nix @@ -32,14 +32,14 @@ buildPythonPackage rec { pname = "bump-my-version"; - version = "1.1.2"; + version = "1.1.4"; pyproject = true; src = fetchFromGitHub { owner = "callowayproject"; repo = "bump-my-version"; tag = version; - hash = "sha256-O7Ihw2AKJyOmBLReNI6TP5K3HgOFDuK1/9lN3d3/SrQ="; + hash = "sha256-oV7ije2q9eBimHxMDJauSJ81xQvwlfcfJw5rgZBHGUg="; }; build-system = [ @@ -93,7 +93,7 @@ buildPythonPackage rec { by the correct increment and optionally commit and tag the changes. ''; homepage = "https://github.com/callowayproject/bump-my-version"; - changelog = "https://github.com/callowayproject/bump-my-version/tag/${version}"; + changelog = "https://github.com/callowayproject/bump-my-version/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ daspk04 ]; mainProgram = "bump-my-version"; From a387fb2b71c2a0f169a991c2da4058cadf84b932 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 21 May 2025 03:59:47 +0200 Subject: [PATCH 011/168] qgis{,-ltr}: require big-parallel system feature --- pkgs/applications/gis/qgis/unwrapped-ltr.nix | 3 +++ pkgs/applications/gis/qgis/unwrapped.nix | 3 +++ 2 files changed, 6 insertions(+) diff --git a/pkgs/applications/gis/qgis/unwrapped-ltr.nix b/pkgs/applications/gis/qgis/unwrapped-ltr.nix index a6a9cd67e980..264dce8ac66f 100644 --- a/pkgs/applications/gis/qgis/unwrapped-ltr.nix +++ b/pkgs/applications/gis/qgis/unwrapped-ltr.nix @@ -197,6 +197,9 @@ mkDerivation rec { done ''; + # >9k objects, >3h build time on a normal build slot + requiredSystemFeatures = [ "big-parallel" ]; + meta = with lib; { description = "Free and Open Source Geographic Information System"; homepage = "https://www.qgis.org"; diff --git a/pkgs/applications/gis/qgis/unwrapped.nix b/pkgs/applications/gis/qgis/unwrapped.nix index 31c9302518a2..9e3f69a1ec40 100644 --- a/pkgs/applications/gis/qgis/unwrapped.nix +++ b/pkgs/applications/gis/qgis/unwrapped.nix @@ -193,6 +193,9 @@ mkDerivation rec { done ''; + # >9k objects, >3h build time on a normal build slot + requiredSystemFeatures = [ "big-parallel" ]; + meta = with lib; { description = "Free and Open Source Geographic Information System"; homepage = "https://www.qgis.org"; From a712c76e6097d666bfa133ff0a33d87a96e734ab Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 14:36:31 +0000 Subject: [PATCH 012/168] k3sup: 0.13.8 -> 0.13.9 --- pkgs/by-name/k3/k3sup/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/k3/k3sup/package.nix b/pkgs/by-name/k3/k3sup/package.nix index 95da794a686d..3a9073f9f4e5 100644 --- a/pkgs/by-name/k3/k3sup/package.nix +++ b/pkgs/by-name/k3/k3sup/package.nix @@ -10,13 +10,13 @@ buildGoModule rec { pname = "k3sup"; - version = "0.13.8"; + version = "0.13.9"; src = fetchFromGitHub { owner = "alexellis"; repo = "k3sup"; rev = version; - sha256 = "sha256-WmvCmG/wk63VnfJTFk3HhiaLzCe9O6kdUc7GpYNAwP4="; + sha256 = "sha256-3ySfLYeopz9PqxNmnao5m4Kymu5o5jcsOJdN8hz0Yss="; }; nativeBuildInputs = [ From 49761d4d728ae61c5c1d5951fc4152a2e02a887d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 14:56:56 +0000 Subject: [PATCH 013/168] astc-encoder: 5.2.0 -> 5.3.0 --- pkgs/by-name/as/astc-encoder/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/as/astc-encoder/package.nix b/pkgs/by-name/as/astc-encoder/package.nix index 5ea47e927550..71af59c5fea8 100644 --- a/pkgs/by-name/as/astc-encoder/package.nix +++ b/pkgs/by-name/as/astc-encoder/package.nix @@ -47,13 +47,13 @@ in stdenv.mkDerivation rec { pname = "astc-encoder"; - version = "5.2.0"; + version = "5.3.0"; src = fetchFromGitHub { owner = "ARM-software"; repo = "astc-encoder"; rev = version; - sha256 = "sha256-rCyi5Nla2IXsLD+rLMTN1h3B9umlNN0epZmPi/IFHPQ="; + sha256 = "sha256-15fX+3wzDoVzvQAhneeGajMsFXqSwmYtlsi3qrNFNus="; }; nativeBuildInputs = [ cmake ]; From 013cdae200db47c190f17107108ff23d64c1c46c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 15:00:07 +0000 Subject: [PATCH 014/168] mendeley: 2.132.1 -> 2.134.0 --- pkgs/applications/office/mendeley/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/mendeley/default.nix b/pkgs/applications/office/mendeley/default.nix index 6e88ab8b0020..35f8a12384f3 100644 --- a/pkgs/applications/office/mendeley/default.nix +++ b/pkgs/applications/office/mendeley/default.nix @@ -8,13 +8,13 @@ let pname = "mendeley"; - version = "2.132.1"; + version = "2.134.0"; executableName = "${pname}-reference-manager"; src = fetchurl { url = "https://static.mendeley.com/bin/desktop/mendeley-reference-manager-${version}-x86_64.AppImage"; - hash = "sha256-FzniIT3foLbXGQ6Rnmea9MmBs0mXAFDgwv0iu9eX3lM="; + hash = "sha256-Wl4d89PjPeoiNe+7TIpJiW0GLZhfNTM0+z4n8ExjAQk="; }; appimageContents = appimageTools.extractType2 { From fb7c9e92b29c5172f5875538d02011cb051326b5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 15:34:04 +0000 Subject: [PATCH 015/168] archivemount: 1a -> 1b --- pkgs/by-name/ar/archivemount/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ar/archivemount/package.nix b/pkgs/by-name/ar/archivemount/package.nix index f7b991785f09..3fe2ccec0c89 100644 --- a/pkgs/by-name/ar/archivemount/package.nix +++ b/pkgs/by-name/ar/archivemount/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "archivemount"; - version = "1a"; + version = "1b"; src = fetchFromSourcehut { owner = "~nabijaczleweli"; repo = "archivemount-ng"; rev = finalAttrs.version; - hash = "sha256-XfWs8+vYCa9G9aPtXk/s5YYq/CHNOS7XDrGW7WpSWBQ="; + hash = "sha256-QQeVr3kPLVX543PwM2jtMnVQgkEfiQd09hG9VQvqLng="; }; nativeBuildInputs = [ pkg-config ]; From 4c5a4420f4f448bc4a3b78769771a6f81faeb01a Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Wed, 21 May 2025 13:54:06 -0400 Subject: [PATCH 016/168] gdb-dashboard: 0.17.3 -> 0.17.4 Changelog: https://github.com/cyrus-and/gdb-dashboard/releases/tag/v0.17.4 Signed-off-by: Ethan Carter Edwards --- pkgs/by-name/gd/gdb-dashboard/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gd/gdb-dashboard/package.nix b/pkgs/by-name/gd/gdb-dashboard/package.nix index 9a966398efcf..95be3cda0310 100644 --- a/pkgs/by-name/gd/gdb-dashboard/package.nix +++ b/pkgs/by-name/gd/gdb-dashboard/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation (finalAttrs: { name = "gdb-dashboard"; - version = "0.17.3"; + version = "0.17.4"; src = fetchFromGitHub { owner = "cyrus-and"; repo = "gdb-dashboard"; tag = "v${finalAttrs.version}"; - hash = "sha256-x3XcAJdj2Q8s+ZkIBHpGZvCroedPzBmqt5W9Hc1FL7s="; + hash = "sha256-xoBkAFwkbaAsvgPwGwe1JxE1C8gPR6GP1iXeNKK5Z70="; }; nativeBuildInputs = [ makeWrapper ]; From 31ee7eed49076dc31c160a80b12aa57ce5353a2a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 20:39:56 +0000 Subject: [PATCH 017/168] gittuf: 0.10.0 -> 0.10.1 --- pkgs/by-name/gi/gittuf/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gi/gittuf/package.nix b/pkgs/by-name/gi/gittuf/package.nix index 66e0919df201..fed362c70e3c 100644 --- a/pkgs/by-name/gi/gittuf/package.nix +++ b/pkgs/by-name/gi/gittuf/package.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "gittuf"; - version = "0.10.0"; + version = "0.10.1"; src = fetchFromGitHub { owner = "gittuf"; repo = pname; rev = "v${version}"; - hash = "sha256-519m73RjtEFjEZGholZ8zsjHZkJBEu2pyQqWOV0wrSc="; + hash = "sha256-sHaQOqD8CzAb8LIOqPpvTAzdmm/NoktLnAOhVNdRIeo="; }; - vendorHash = "sha256-TFkHbIRuFPfpIE/2ALjlJX/lHcp1xYyszUiSj6CQ/U4="; + vendorHash = "sha256-v45pMH05f6HmAcfujk25w5TN65nllLUMVlkNYm6Q/gM="; ldflags = [ "-X github.com/gittuf/gittuf/internal/version.gitVersion=${version}" ]; From 0e472699a5d4bbb0e9f73695233a0de096470f61 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 22:10:09 +0000 Subject: [PATCH 018/168] cargo-shuttle: 0.54.0 -> 0.55.0 --- pkgs/by-name/ca/cargo-shuttle/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ca/cargo-shuttle/package.nix b/pkgs/by-name/ca/cargo-shuttle/package.nix index cccfa424425e..211b041e148f 100644 --- a/pkgs/by-name/ca/cargo-shuttle/package.nix +++ b/pkgs/by-name/ca/cargo-shuttle/package.nix @@ -9,17 +9,17 @@ rustPlatform.buildRustPackage rec { pname = "cargo-shuttle"; - version = "0.54.0"; + version = "0.55.0"; src = fetchFromGitHub { owner = "shuttle-hq"; repo = "shuttle"; rev = "v${version}"; - hash = "sha256-37HQDiIgwxbMcFo7kM/SZ7dJzZc5CzL03xQNiMkG8l8="; + hash = "sha256-/IsK0uH9Kbs5Sjhi7IErug2LyucBuOZJeWW7oz8q3c0="; }; useFetchCargoVendor = true; - cargoHash = "sha256-CYpAsNzQyIPigZSY/PwzGhYHU0316odwkwvxdcVisYk="; + cargoHash = "sha256-buSUvA9gB82SOc3nnAQyLIasd6UKeNn/hurq7euDWwE="; nativeBuildInputs = [ pkg-config ]; From 30a8aece1ebf3e55ac6d103c9ffb5b561689793d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 21 May 2025 23:47:37 +0000 Subject: [PATCH 019/168] surface-control: 0.4.7-1 -> 0.4.8-1 --- pkgs/by-name/su/surface-control/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/su/surface-control/package.nix b/pkgs/by-name/su/surface-control/package.nix index 3434c126d5a1..8fefc5eab368 100644 --- a/pkgs/by-name/su/surface-control/package.nix +++ b/pkgs/by-name/su/surface-control/package.nix @@ -10,18 +10,18 @@ rustPlatform.buildRustPackage rec { pname = "surface-control"; - version = "0.4.7-1"; + version = "0.4.8-1"; src = fetchFromGitHub { owner = "linux-surface"; repo = "surface-control"; tag = "v${version}"; - hash = "sha256-3XTG63zjCZVuTCPvDCpl5ZNPf57r6dctEfgTu0hkznM="; + hash = "sha256-ZooqPlvxx+eBFEIf9Y1iU6zhhgafGUw28G5cwdF/E78="; }; useFetchCargoVendor = true; - cargoHash = "sha256-YE20/3emZ6pveEeRgVXVrNvykpEs+wvnHSsrMLEZTdk="; + cargoHash = "sha256-gv/ipOQ1kmLc9YxxwuXc/rq6YUdVw2FhrI9C+DHxIDM="; nativeBuildInputs = [ pkg-config From 81d571e9b18e59b3f7fc30b30596f6434b6ae41a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 00:20:27 +0000 Subject: [PATCH 020/168] free42: 3.3.4 -> 3.3.5 --- pkgs/by-name/fr/free42/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fr/free42/package.nix b/pkgs/by-name/fr/free42/package.nix index 3ab64765ff10..24a9c84b1372 100644 --- a/pkgs/by-name/fr/free42/package.nix +++ b/pkgs/by-name/fr/free42/package.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "free42"; - version = "3.3.4"; + version = "3.3.5"; src = fetchFromGitHub { owner = "thomasokken"; repo = "free42"; tag = "v${finalAttrs.version}"; - hash = "sha256-4EEk11/a9kie1sXO1lpJ7GGqjQ2Wvcvg7uhlD6RzyP0="; + hash = "sha256-OJ9eECMMfUHLZqcbLRQnDrtqn6LJ0QL+j1WzF8WryiY="; }; nativeBuildInputs = [ From d1de12e2880c69bd0edc227ab9d0f80aeedeb0d3 Mon Sep 17 00:00:00 2001 From: Charles Cheng Ji Date: Wed, 21 May 2025 20:25:37 -0400 Subject: [PATCH 021/168] bun: 1.2.13 -> 1.2.14 --- pkgs/by-name/bu/bun/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/bu/bun/package.nix b/pkgs/by-name/bu/bun/package.nix index 59a189d9e5d8..7f2af2db0733 100644 --- a/pkgs/by-name/bu/bun/package.nix +++ b/pkgs/by-name/bu/bun/package.nix @@ -17,7 +17,7 @@ }: stdenvNoCC.mkDerivation rec { - version = "1.2.13"; + version = "1.2.14"; pname = "bun"; src = @@ -86,19 +86,19 @@ stdenvNoCC.mkDerivation rec { sources = { "aarch64-darwin" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip"; - hash = "sha256-gVQ2dSTYwpjtsmm40N9h1GnsQZTTYcB+S40sZfu8Lvs="; + hash = "sha256-J0w3utbdUEH3T2UzCww5gDF7EUKhveznvr6zqrRLiNo="; }; "aarch64-linux" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip"; - hash = "sha256-tqJVN7wtEevkSkeN1iqOAdvJ9OHEt9LXMLSn6dNYDMk="; + hash = "sha256-hLctvtLYWywlHx80ViQ65LVyd7hs6sNAakRgGPbPltk="; }; "x86_64-darwin" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64-baseline.zip"; - hash = "sha256-BTh6RkWJFTig33Ql6JEuwWt0JRFs1BZ2aqUsowE/jGQ="; + hash = "sha256-c97u+DigXOVc28AA/rVUSt773Z8GbW21pejeCHLdF2Q="; }; "x86_64-linux" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip"; - hash = "sha256-i7LkxH6uGD8kc8Vbm853mMSig21kbCWHp5h6PRBi4QA="; + hash = "sha256-zrG9NHKgi83I2VSCAkOjKdgLigwC9Xy+/ZERCS2NPd0="; }; }; updateScript = writeShellScript "update-bun" '' From 4336c2fb363d01660929665f8980ce79a81a0ecb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 00:40:41 +0000 Subject: [PATCH 022/168] git-stack: 0.10.18 -> 0.10.19 --- pkgs/by-name/gi/git-stack/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gi/git-stack/package.nix b/pkgs/by-name/gi/git-stack/package.nix index f5e23de6893a..594b42141002 100644 --- a/pkgs/by-name/gi/git-stack/package.nix +++ b/pkgs/by-name/gi/git-stack/package.nix @@ -8,17 +8,17 @@ rustPlatform.buildRustPackage rec { pname = "git-stack"; - version = "0.10.18"; + version = "0.10.19"; src = fetchFromGitHub { owner = "gitext-rs"; repo = "git-stack"; rev = "v${version}"; - hash = "sha256-iFoxYq4NHC/K0ruPDXHfayZDglebBJE00V57HUH9Y84="; + hash = "sha256-oJ24qNL0Lw0MC8+YHbnCW2Mbpu2N04e0QG3LpLbYH4M="; }; useFetchCargoVendor = true; - cargoHash = "sha256-338iRd6zoy2O55sZ0h+s6i8kg4yXFBowRQLge9R9Bqs="; + cargoHash = "sha256-kjyJeKeFtETowTehQEjN58YoqYFUBt9yQlRIcNY0hso="; # Many tests try to access the file system. doCheck = false; From 4289cb39faaeb72c3479733ef51891d959b0c94a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 00:51:27 +0000 Subject: [PATCH 023/168] checkstyle: 10.23.1 -> 10.24.0 --- pkgs/by-name/ch/checkstyle/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ch/checkstyle/package.nix b/pkgs/by-name/ch/checkstyle/package.nix index 294b988da062..30360005a572 100644 --- a/pkgs/by-name/ch/checkstyle/package.nix +++ b/pkgs/by-name/ch/checkstyle/package.nix @@ -7,12 +7,12 @@ }: stdenvNoCC.mkDerivation rec { - version = "10.23.1"; + version = "10.24.0"; pname = "checkstyle"; src = fetchurl { url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; - sha256 = "sha256-bF0U+SLjVoCLTZLbdtFy98HZtYK7uw0zew2gGuisdH8="; + sha256 = "sha256-sREZA1/H9S3rXXW6qjyVwpLY75JQCqBooMEATUssvYM="; }; nativeBuildInputs = [ makeBinaryWrapper ]; From 55f22a3d23c2236b39c018ee69ce988bfedfd577 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 01:45:58 +0000 Subject: [PATCH 024/168] kubernetes-helmPlugins.helm-mapkubeapis: 0.5.2 -> 0.6.1 --- .../networking/cluster/helm/plugins/helm-mapkubeapis.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/helm/plugins/helm-mapkubeapis.nix b/pkgs/applications/networking/cluster/helm/plugins/helm-mapkubeapis.nix index 47aa83ee9653..7a57f58bef6c 100644 --- a/pkgs/applications/networking/cluster/helm/plugins/helm-mapkubeapis.nix +++ b/pkgs/applications/networking/cluster/helm/plugins/helm-mapkubeapis.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "helm-mapkubeapis"; - version = "0.5.2"; + version = "0.6.1"; src = fetchFromGitHub { owner = "helm"; repo = "helm-mapkubeapis"; rev = "v${version}"; - hash = "sha256-0DIBdSi/WIHVF8O7OtJOaFnIfpObsUXzgpj25kJuS6E="; + hash = "sha256-RvyoqfhvoXESmc6M4B1XeUtal0zQt6LCKjByyBe6pUU="; }; - vendorHash = "sha256-G3Q8XCwKLgHeWLF46C5lWfvuynr/cJbkq7xdydfTHZ4="; + vendorHash = "sha256-ZnfNje0JuTCckW9SMc2TLb968nHiGK/bgOJnIllJJq4="; # NOTE: Remove the install and upgrade hooks. postPatch = '' From f6ed68e9385faef62b2f17d25c411263bb3514d6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 01:50:23 +0000 Subject: [PATCH 025/168] chiaki-ng: 1.9.7 -> 1.9.8 --- pkgs/games/chiaki-ng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/chiaki-ng/default.nix b/pkgs/games/chiaki-ng/default.nix index 1a4124011de7..c230fe10768b 100644 --- a/pkgs/games/chiaki-ng/default.nix +++ b/pkgs/games/chiaki-ng/default.nix @@ -37,13 +37,13 @@ stdenv.mkDerivation rec { pname = "chiaki-ng"; - version = "1.9.7"; + version = "1.9.8"; src = fetchFromGitHub { owner = "streetpea"; repo = "chiaki-ng"; rev = "v${version}"; - hash = "sha256-dAb4RGRCC6pCpfLxUJO7pFnqNm1icaU3v1n+HhJILe0="; + hash = "sha256-HQmXbi2diewA/+AMjlkyffvD73TkX6D+lMh+FL2Rcz4="; fetchSubmodules = true; }; From 7a7e39db3d35874bf13652202bd7e16ba76c52bf Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 02:03:20 +0000 Subject: [PATCH 026/168] triforce-lv2: 0.3.0 -> 0.3.2 --- pkgs/by-name/tr/triforce-lv2/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/tr/triforce-lv2/package.nix b/pkgs/by-name/tr/triforce-lv2/package.nix index e4e2228373da..657233da0b8d 100644 --- a/pkgs/by-name/tr/triforce-lv2/package.nix +++ b/pkgs/by-name/tr/triforce-lv2/package.nix @@ -6,17 +6,17 @@ rustPlatform.buildRustPackage rec { pname = "triforce-lv2"; - version = "0.3.0"; + version = "0.3.2"; src = fetchFromGitHub { owner = "chadmed"; repo = "triforce"; rev = version; - hash = "sha256-qEN/KQup4bpHCt8GpsiJ2wfUQxM8F9DWuGHEJiBVfQA="; + hash = "sha256-f4i0S6UaVfs1CUeQRqo22PRgMNwYDNoMunHidI1XzBk="; }; useFetchCargoVendor = true; - cargoHash = "sha256-mTvxPS1OpGhPqKzMC0XSJZaNEFajlEVkG3o1vk3+LNM="; + cargoHash = "sha256-2FC6wlFJkQryA/bcjF0GjrMQVb8hlUY+muFqPqShWss="; installPhase = '' export LIBDIR=$out/lib From 8f7e3a2fe69225d2d09e9e6a85c39e779017485f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 02:14:19 +0000 Subject: [PATCH 027/168] ianny: 2.1.0 -> 2.1.1 --- pkgs/by-name/ia/ianny/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ia/ianny/package.nix b/pkgs/by-name/ia/ianny/package.nix index 8d14be02987a..e7b19c6088bd 100644 --- a/pkgs/by-name/ia/ianny/package.nix +++ b/pkgs/by-name/ia/ianny/package.nix @@ -8,17 +8,17 @@ rustPlatform.buildRustPackage rec { pname = "ianny"; - version = "2.1.0"; + version = "2.1.1"; src = fetchFromGitHub { owner = "zefr0x"; repo = "ianny"; rev = "v${version}"; - hash = "sha256-XNXlU9cCXPJhPytnVGHol8Cd5nZOEDDoDM4sm1+I/Qc="; + hash = "sha256-XwwfBOx+5l5KjthL69nLpIVc7ilA4rKGBeRvE9BEQPU="; }; useFetchCargoVendor = true; - cargoHash = "sha256-7XpM6WWJaHHui85HCZ7SL1G2ICNw453xfZx5kUa/oeg="; + cargoHash = "sha256-A5ZInR6gXvDPpa2azF1ZmVANzm3v1YAvxJjJ7h32J2A="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ dbus.dev ]; From 7042c1b2f06e3e637f4b7785eb6a62fc8704bfaa Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 02:27:32 +0000 Subject: [PATCH 028/168] python3Packages.pywebcopy: 7.0.2 -> 7.1 --- pkgs/development/python-modules/pywebcopy/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pywebcopy/default.nix b/pkgs/development/python-modules/pywebcopy/default.nix index b8065204a811..62c907a0cbc8 100644 --- a/pkgs/development/python-modules/pywebcopy/default.nix +++ b/pkgs/development/python-modules/pywebcopy/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "pywebcopy"; - version = "7.0.2"; + version = "7.1"; pyproject = true; src = fetchFromGitHub { owner = "rajatomar788"; repo = "pywebcopy"; - rev = "v${version}"; - hash = "sha256-XTPk3doF9dqImsLtTB03YKMWLzQrJpJtjNXe+691rZo="; + tag = version; + hash = "sha256-ee8uGg4PU1uch8cyiU7QfvdYFUVDz7obq9oC8fKkf1s="; }; build-system = [ setuptools ]; From cd79f7beae4403ba5fd7f7c5d91132d5547f1df8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 02:50:38 +0000 Subject: [PATCH 029/168] jfrog-cli: 2.75.1 -> 2.76.0 --- pkgs/by-name/jf/jfrog-cli/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/jf/jfrog-cli/package.nix b/pkgs/by-name/jf/jfrog-cli/package.nix index 05645ce15edc..87fc7237a8f1 100644 --- a/pkgs/by-name/jf/jfrog-cli/package.nix +++ b/pkgs/by-name/jf/jfrog-cli/package.nix @@ -8,17 +8,17 @@ buildGoModule rec { pname = "jfrog-cli"; - version = "2.75.1"; + version = "2.76.0"; src = fetchFromGitHub { owner = "jfrog"; repo = "jfrog-cli"; tag = "v${version}"; - hash = "sha256-2vJiT0gr+Ix91KeM+wlldDHkrWN4Zug7RmuxJ5XfSGQ="; + hash = "sha256-DZJLIIigX4/gzGaVVhyJmk+TN6wnNlH+NWkB6dc0aoU="; }; proxyVendor = true; - vendorHash = "sha256-1SLzXB9lw5U9xJtUqI5nSoeDEa2IT8FbRH11yEY8kS4="; + vendorHash = "sha256-Ouz1nac3+u8AYzqLaax6Nw6qunTN/hCRjEf9koDM75A="; checkFlags = "-skip=^TestReleaseBundle"; From 66becc4cce883499e9d6f7380e19c2f9bcda8366 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 03:33:44 +0000 Subject: [PATCH 030/168] python3Packages.velbus-aio: 2025.4.2 -> 2025.5.0 --- pkgs/development/python-modules/velbus-aio/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/velbus-aio/default.nix b/pkgs/development/python-modules/velbus-aio/default.nix index 7e42c6d2b82b..b49831a7b832 100644 --- a/pkgs/development/python-modules/velbus-aio/default.nix +++ b/pkgs/development/python-modules/velbus-aio/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "velbus-aio"; - version = "2025.4.2"; + version = "2025.5.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "Cereal2nd"; repo = "velbus-aio"; tag = version; - hash = "sha256-3H5lFIMLHyucX0h7JagGPsqGyO1RMVPJ1L91iDbdEww="; + hash = "sha256-oRcTiFYWVOlM6jHuIUpE4OapWn/4VyWD+MYZI5pgW3s="; fetchSubmodules = true; }; @@ -50,7 +50,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python library to support the Velbus home automation system"; homepage = "https://github.com/Cereal2nd/velbus-aio"; - changelog = "https://github.com/Cereal2nd/velbus-aio/releases/tag/${version}"; + changelog = "https://github.com/Cereal2nd/velbus-aio/releases/tag/${src.tag}"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ fab ]; }; From d7e4ff194d3de74be1e86c268a49b7954f96405c Mon Sep 17 00:00:00 2001 From: Frederic Ruget Date: Wed, 21 May 2025 00:56:50 +0200 Subject: [PATCH 031/168] Add douzebis to the list of maintainers --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 2bdd25f9a199..6b41d47f8ca9 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -6573,6 +6573,12 @@ github = "dottybot"; githubId = 12519979; }; + douzebis = { + email = "fred@atlant.is"; + github = "douzebis"; + githubId = 61088438; + name = "Frédéric Ruget"; + }; dpaetzel = { email = "david.paetzel@posteo.de"; github = "dpaetzel"; From a8a36fa8be112be0883ea69a27355ea8c04e4a73 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 04:21:12 +0000 Subject: [PATCH 032/168] python3Packages.metaflow: 2.15.11 -> 2.15.14 --- pkgs/development/python-modules/metaflow/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/metaflow/default.nix b/pkgs/development/python-modules/metaflow/default.nix index 7d6d55452d6e..e6b43a512d12 100644 --- a/pkgs/development/python-modules/metaflow/default.nix +++ b/pkgs/development/python-modules/metaflow/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "metaflow"; - version = "2.15.11"; + version = "2.15.14"; pyproject = true; src = fetchFromGitHub { owner = "Netflix"; repo = "metaflow"; tag = version; - hash = "sha256-hL1+uVjM7VQPz3Lt3QsOdvSTkXLv38zFm6YWQ2j0w0o="; + hash = "sha256-Hw9ZtFUebztKpQPe8b4mHGN7GRr+5THpLV+R/ipWUoY="; }; build-system = [ From 0fddfba772033eaf77d7a5c7b549da01fda247d8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 05:20:03 +0000 Subject: [PATCH 033/168] nak: 0.13.2 -> 0.14.1 --- pkgs/by-name/na/nak/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/na/nak/package.nix b/pkgs/by-name/na/nak/package.nix index 0ed580b2fae8..98d44998f805 100644 --- a/pkgs/by-name/na/nak/package.nix +++ b/pkgs/by-name/na/nak/package.nix @@ -8,16 +8,16 @@ buildGoModule (finalAttrs: { pname = "nak"; - version = "0.13.2"; + version = "0.14.1"; src = fetchFromGitHub { owner = "fiatjaf"; repo = "nak"; tag = "v${finalAttrs.version}"; - hash = "sha256-Ecn3hIdGzwcUrfSvESCGAYlPo7Kf0425RJ4GBzVYGNs="; + hash = "sha256-uPsZV29xjVUeq0vKsTPf/hRtjsCnjaShiabnKXm5kPY="; }; - vendorHash = "sha256-ZDOlQiSVe0hssTsMEtpwIKu5v5zH4RJ+Haq+zS0GTnc="; + vendorHash = "sha256-q6jdczZ8K+aJJHfN2OtW0mP4OpMbKAB16Bws2wFb6Zg="; ldflags = [ "-s" From 190dd34881c6a47468e1e9f89366154af37c37a5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 06:39:18 +0000 Subject: [PATCH 034/168] mpvScripts.twitch-chat: 0-unstable-2025-03-30 -> 0-unstable-2025-05-15 --- pkgs/applications/video/mpv/scripts/twitch-chat.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/mpv/scripts/twitch-chat.nix b/pkgs/applications/video/mpv/scripts/twitch-chat.nix index bf6eab70d187..038a85ceaf45 100644 --- a/pkgs/applications/video/mpv/scripts/twitch-chat.nix +++ b/pkgs/applications/video/mpv/scripts/twitch-chat.nix @@ -7,13 +7,13 @@ }: buildLua { pname = "twitch-chat"; - version = "0-unstable-2025-03-30"; + version = "0-unstable-2025-05-15"; src = fetchFromGitHub { owner = "CrendKing"; repo = "mpv-twitch-chat"; - rev = "97c94ae58b4a898067b9c63c477716280327d8e1"; - hash = "sha256-KjlzVuj47zos2RQHbveijsyJoN2f7VGBboWolISom7M="; + rev = "4d88ac12c843da0e916b0ed1df4d087a3418501b"; + hash = "sha256-owU0F976K4CX0kKYoRbdtz/sqCvd8kw2LqItEgY25gE="; postFetch = "rm $out/screenshot.webp"; }; From d73105ec6ace06a4ef0af33921e8397ef3809ec6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 06:43:24 +0000 Subject: [PATCH 035/168] python3Packages.msgraph-sdk: 1.30.0 -> 1.31.0 --- pkgs/development/python-modules/msgraph-sdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/msgraph-sdk/default.nix b/pkgs/development/python-modules/msgraph-sdk/default.nix index b1e60408f4e7..728d9013a0e9 100644 --- a/pkgs/development/python-modules/msgraph-sdk/default.nix +++ b/pkgs/development/python-modules/msgraph-sdk/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "msgraph-sdk"; - version = "1.30.0"; + version = "1.31.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "microsoftgraph"; repo = "msgraph-sdk-python"; tag = "v${version}"; - hash = "sha256-YKeQkgEOiblG7RJUAf7qI8F9MYU8sFDxrVUbdYj/H0Y="; + hash = "sha256-edDf3w7QXQd19B68S85OwV2rI5FpYwvuJ+DkF3da0HE="; }; build-system = [ flit-core ]; From 0ae7e417d1633fb755b8e549436969d6cb93740f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 07:15:40 +0000 Subject: [PATCH 036/168] python3Packages.dissect-archive: 1.5 -> 1.6 --- pkgs/development/python-modules/dissect-archive/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dissect-archive/default.nix b/pkgs/development/python-modules/dissect-archive/default.nix index 118de52c0e0f..79a23a310d2d 100644 --- a/pkgs/development/python-modules/dissect-archive/default.nix +++ b/pkgs/development/python-modules/dissect-archive/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "dissect-archive"; - version = "1.5"; + version = "1.6"; pyproject = true; disabled = pythonOlder "3.9"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "fox-it"; repo = "dissect.archive"; tag = version; - hash = "sha256-WqzZmt95NJPX0+wGyvJZzoOJTR5qH0YYOTFsYIihE1Y="; + hash = "sha256-TaNSgUL9Ia7Qz9qy+I+4vRFn5gGnsYxAgbsrI6iYrlo="; }; build-system = [ From 01306db0e996c968499c7c66d9d176800d022cab Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 07:34:47 +0000 Subject: [PATCH 037/168] python3Packages.pynitrokey: 0.8.3 -> 0.8.4 --- pkgs/development/python-modules/pynitrokey/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pynitrokey/default.nix b/pkgs/development/python-modules/pynitrokey/default.nix index 1852360f7324..7d71afb25bec 100644 --- a/pkgs/development/python-modules/pynitrokey/default.nix +++ b/pkgs/development/python-modules/pynitrokey/default.nix @@ -30,7 +30,7 @@ let pname = "pynitrokey"; - version = "0.8.3"; + version = "0.8.4"; mainProgram = "nitropy"; in @@ -40,7 +40,7 @@ buildPythonPackage { src = fetchPypi { inherit pname version; - hash = "sha256-GPg034MhJLROSERWasZyvklckLICBI6XWMTLC++nX4g="; + hash = "sha256-Sr3ecKyIjsemM2G72BQR0S5YzfXA0nK9i29yKNie9Ys="; }; nativeBuildInputs = [ installShellFiles ]; From a831e0266317c4d554bb3c4795d2301b56796846 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 08:08:03 +0000 Subject: [PATCH 038/168] spicy-parser-generator: 1.13.0 -> 1.13.1 --- pkgs/by-name/sp/spicy-parser-generator/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sp/spicy-parser-generator/package.nix b/pkgs/by-name/sp/spicy-parser-generator/package.nix index 93bba9331cf3..3bad8d1481e9 100644 --- a/pkgs/by-name/sp/spicy-parser-generator/package.nix +++ b/pkgs/by-name/sp/spicy-parser-generator/package.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { pname = "spicy"; - version = "1.13.0"; + version = "1.13.1"; strictDeps = true; @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { owner = "zeek"; repo = "spicy"; rev = "v${version}"; - hash = "sha256-BMypkuBmepuLmOXUjeG5hZhOXojjFodaZzZz5S+iBoE="; + hash = "sha256-AbUVt3agmvtapmw6nYPUEhSRzqoaV/DIF6hZjTbz7KQ="; fetchSubmodules = true; }; From 958c994c0a57b1c46145366a573c5f17f0281b73 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 08:16:37 +0000 Subject: [PATCH 039/168] ulid: 2.1.0 -> 2.1.1 --- pkgs/by-name/ul/ulid/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ul/ulid/package.nix b/pkgs/by-name/ul/ulid/package.nix index e8a4a8c9bd23..f1dffd0eee30 100644 --- a/pkgs/by-name/ul/ulid/package.nix +++ b/pkgs/by-name/ul/ulid/package.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "ulid"; - version = "2.1.0"; + version = "2.1.1"; src = fetchFromGitHub { owner = "oklog"; repo = "ulid"; rev = "v${version}"; - hash = "sha256-/oQPgcO1xKbHXutxz0WPfIduShPrfH1l+7/mj8jLst8="; + hash = "sha256-kPNLaZMGwGc7ngPCivf/n4Bis219yOkGAaa6mt7+yTY="; }; vendorHash = "sha256-s1YkEwFxE1zpUUCgwOAl8i6/9HB2rcGG+4kqnixTit0="; From 123109b0034ea3232ed168a5763994bdd3049e3d Mon Sep 17 00:00:00 2001 From: Arsenii Zorin Date: Thu, 22 May 2025 11:25:47 +0300 Subject: [PATCH 040/168] pulumi-bin: 3.170.0 -> 3.171.0 --- pkgs/tools/admin/pulumi-bin/data.nix | 226 +++++++++++++-------------- 1 file changed, 113 insertions(+), 113 deletions(-) diff --git a/pkgs/tools/admin/pulumi-bin/data.nix b/pkgs/tools/admin/pulumi-bin/data.nix index e1cb32acff53..0e9a80096971 100644 --- a/pkgs/tools/admin/pulumi-bin/data.nix +++ b/pkgs/tools/admin/pulumi-bin/data.nix @@ -1,16 +1,16 @@ # DO NOT EDIT! This file is generated automatically by update.sh { }: { - version = "3.170.0"; + version = "3.171.0"; pulumiPkgs = { x86_64-linux = [ { - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.170.0-linux-x64.tar.gz"; - sha256 = "1rgqndfizks6kz5sa98gwzxg9jx0si0ala2p8dl1l43c2094mcn4"; + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.171.0-linux-x64.tar.gz"; + sha256 = "0nlvx4kq4nd9k8ziaxzxqa2qwsg472zshb0kviyirqlrv52gh6p9"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.37.0-linux-amd64.tar.gz"; - sha256 = "0s8hxqfg5zjr642dikbbny1xsl8yfi400wz5dx2mdisrfiy36wbq"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.38.0-linux-amd64.tar.gz"; + sha256 = "046cqacl3lsrjdrgcc9mzr58dimgcsb2dbcradfsz2x2pg9r4i04"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v8.1.0-linux-amd64.tar.gz"; @@ -21,20 +21,20 @@ sha256 = "0a4y615wwrif6p8pl02bj8ny38230wdh1iy13f61a8r4q2z3lh84"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.8.2-linux-amd64.tar.gz"; - sha256 = "0cyv6fg1n8md09qq8kp6qx71ffiyqjzx2rd1apjpxgqjmfgsx2gn"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.8.3-linux-amd64.tar.gz"; + sha256 = "1fapykfy2jzgygydgmvrlv54bnh1r1xhmvhp70fbz1z6nr7sh89x"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.19.1-linux-amd64.tar.gz"; - sha256 = "1lzb4sd3d2k78wh8mv9zdclp0c7am7sh5bdbcs75a0cqfpb4yzf1"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.20.0-linux-amd64.tar.gz"; + sha256 = "1f91zhzphymx0y8hpq2v0fxyy9q8pq4mif5pxdamrjslqiyssj60"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.80.0-linux-amd64.tar.gz"; - sha256 = "019v2yaf78zd89b62ly9g6mjxff51czmd9rilcm8yaz8arny9ysd"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.81.0-linux-amd64.tar.gz"; + sha256 = "1nzphkx9kvnw341ssbwr289nn867xndjzgjrw807nijp94900pv8"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.4.0-linux-amd64.tar.gz"; - sha256 = "0fbkbylll84disnz6lybba5c8br4k2v8i18xf6yqbgjw0rylff5r"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.1-linux-amd64.tar.gz"; + sha256 = "0jlaj3pz5j0hgnqdg2b1xw9cwlr4i5pvir8flhwvw222nsah15yv"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.9.0-linux-amd64.tar.gz"; @@ -57,12 +57,12 @@ sha256 = "1ccjfr1v88hc2x845z7h3bxkgxqn6f134d422qdz9bgqdlyrr2dk"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.44.0-linux-amd64.tar.gz"; - sha256 = "0a3ldv9wbsym8vhb0rk0l0c8f03vi13qzqydli7ap7alhc4i1jvc"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.45.0-linux-amd64.tar.gz"; + sha256 = "1h78r8m93cgdl85xygdya89ws7jdkgnbkj6hk9mc5gbkj2i4img2"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.2-linux-amd64.tar.gz"; - sha256 = "13v7sixchdsmlr16kik0i3hg6yy45krl6303zg3155qss0vmixnb"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.7.0-linux-amd64.tar.gz"; + sha256 = "0l2n2qbz0j6nbq9hpd333rlky0dxxb555lys1jjxk0i1mpl4vh74"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-linux-amd64.tar.gz"; @@ -73,8 +73,8 @@ sha256 = "176bpdyhmwb2pyi4k1dc25agpm4spfndjhg1yjwfv3qvlgnzsnlq"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.31.0-linux-amd64.tar.gz"; - sha256 = "1cgc2x6c7pd73m59jx59kif3jxd4gvl1j6wkq5nsklgz9klg75m9"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.32.0-linux-amd64.tar.gz"; + sha256 = "0rwqbghfsbv3lx1xp5imgwv5drsphsfsim42dsax7r3r2lgz8qhb"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.2-linux-amd64.tar.gz"; @@ -89,8 +89,8 @@ sha256 = "1zra1ck64gs4nwqf62ksfmpbx24lxw6vsgi47j4v8q051m89fgq3"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.22.1-linux-amd64.tar.gz"; - sha256 = "1wjqb8sbrdjqkb62pg4gcswblfdw26h28cbnlr7ibndm2ph52ijw"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.0-linux-amd64.tar.gz"; + sha256 = "027im101l9b3g7k4hp0mdcvwyb5fj6409k9a6zq0riv6598zf5ch"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-linux-amd64.tar.gz"; @@ -121,16 +121,16 @@ sha256 = "0izzpyjizzz4hlv6rnz3l8f4lgyfgxkf67hrxn6ph8zhzs3cgvh4"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v1.3.0-linux-amd64.tar.gz"; - sha256 = "1z9d3ng3aqz1gpd3l0akva7lfyq8l94xd4z4jg3r29w3m274xbz4"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.0.0-linux-amd64.tar.gz"; + sha256 = "01jvvnbgaghvrsvj4cwssza1588ga0ibsy0wvwav42ylkycf4ra9"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.119.0-linux-amd64.tar.gz"; - sha256 = "10ws1zpyrqbdaw8qr3flib307gfs4l39zpbznp8hz9f7s4yrg3a5"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.120.0-linux-amd64.tar.gz"; + sha256 = "08gqs07dnwwpx7hs846gfh1p38ypwshrkn1yp73f4s8zlhgjafkc"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.9-linux-amd64.tar.gz"; - sha256 = "0bczfaw1yv1ahr4mv81in3rp63imr5nr3bp3p2f10a9nw0n8z6hl"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-linux-amd64.tar.gz"; + sha256 = "0pppwgwl726rfy92fnya9afj3cciw13vzs9r60w2477i3250slqj"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.20.0-linux-amd64.tar.gz"; @@ -149,8 +149,8 @@ sha256 = "0ypayx9gabrp4x08q9paqjysql5m9zhazkb2nsdzp5jkj2r3q9dx"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.13.2-linux-amd64.tar.gz"; - sha256 = "0lgzj6ziskf71qand9cwmxgj7wr33gjp6m09hyfgy3n05iar0nd2"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.14.0-linux-amd64.tar.gz"; + sha256 = "1s45y5akykp0c62kwsll1x11r83dznykh736ra6j1z1d2a2nazp8"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.9-linux-amd64.tar.gz"; @@ -163,12 +163,12 @@ ]; x86_64-darwin = [ { - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.170.0-darwin-x64.tar.gz"; - sha256 = "0vzsyli8a8ydvm0xwwnvag5xjsgzdzyz1qdn86ncjn8mya79zivm"; + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.171.0-darwin-x64.tar.gz"; + sha256 = "0gnzwbf4y3qziwm9s2ydidvlakv9p2w0ib7dmgsm3mzrj2ifn9wq"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.37.0-darwin-amd64.tar.gz"; - sha256 = "00fbjlw212dsmlxlqmnlcp5dan4m3jmym8pbzwi2ky3sxxvs5vwi"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.38.0-darwin-amd64.tar.gz"; + sha256 = "1g0b1c35n1hdbyw8amkh3j3dgigxj418hdb7cv3q0mab14p47rxj"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v8.1.0-darwin-amd64.tar.gz"; @@ -179,20 +179,20 @@ sha256 = "1qp9di35a5ig4dy1nbysyzw3jc4apwm3g6zwsam1ncjya13y4pa2"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.8.2-darwin-amd64.tar.gz"; - sha256 = "0271zhcxianr6bylg78x0snh3iqyhhinyjwk9dpvpi2kdfknramj"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.8.3-darwin-amd64.tar.gz"; + sha256 = "11288q3k3dq20kggcxif4xv06zk7x2x5xwcj5swr6la7cjq2wvpr"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.19.1-darwin-amd64.tar.gz"; - sha256 = "183slnicjqfsk7hjll0c5ijwfw7m9wd5n6ci95k2fsz79ahldgnz"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.20.0-darwin-amd64.tar.gz"; + sha256 = "10yg7k3yd9x837068gr4yabq4c7vdy0hqxb2vl1m67aq28w6qwsc"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.80.0-darwin-amd64.tar.gz"; - sha256 = "0qhni6irjx3ca498sfjks0vg7rnkz3ci38y39p8a64dnldxa24fi"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.81.0-darwin-amd64.tar.gz"; + sha256 = "0nhs9nj5fj2pbvvrygq1prglfsk0hr2mspc92743n6mn93k32vb8"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.4.0-darwin-amd64.tar.gz"; - sha256 = "0rj8xad7nw1vp20dpxaz0r4bg2fn44qci9pw2mh5cqi4v54v7v51"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.1-darwin-amd64.tar.gz"; + sha256 = "1nvznxmdpb92s7c3fi8arz8kyzwdnvhhy8j4j9s5sqw5bn13bm3a"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.9.0-darwin-amd64.tar.gz"; @@ -215,12 +215,12 @@ sha256 = "0w71myfi4j5kwqrdjf7s8674m7zbfzpk2lz10iyhdr404jawb7rg"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.44.0-darwin-amd64.tar.gz"; - sha256 = "1bsyiw9pxqpv4ngapndk6wfa5jq9p783llwk3xjrwzd14mw2dbmn"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.45.0-darwin-amd64.tar.gz"; + sha256 = "0nxz9qgmf9i5zp7am8ca1w9dv0m5vw1y84q6aisbrsi04qlkc9z3"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.2-darwin-amd64.tar.gz"; - sha256 = "0i3gqzdb35m1yqcqxw5jf10iahldfxxsfjcz0qwk6dc2n4f7v9d0"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.7.0-darwin-amd64.tar.gz"; + sha256 = "044fasim2hyajk5l1qfjgy09f9in4026c6il9a564ca4g5962l32"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-darwin-amd64.tar.gz"; @@ -231,8 +231,8 @@ sha256 = "049y0l7hyng3kqkh5hkxzw6k743dy1zik0xgbyv3iarg8gxi6yb8"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.31.0-darwin-amd64.tar.gz"; - sha256 = "1c97r6av8rsph5wwrra0cv2k13g98qzi8xaaw8xmw59ybakgykpr"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.32.0-darwin-amd64.tar.gz"; + sha256 = "0b92a495av2yhqmzrg7zlk7rypzpq725kbxqsj9860qd9clhadp4"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.2-darwin-amd64.tar.gz"; @@ -247,8 +247,8 @@ sha256 = "0ddd0pgpyywq291r9q8w6bn41r2px595017iihx4n2cnb1c4v6d5"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.22.1-darwin-amd64.tar.gz"; - sha256 = "1phv5jmcr31dj62qh1frv03dmihpymlgyjar21n7xjfrlxm2pygy"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.0-darwin-amd64.tar.gz"; + sha256 = "0f4xqg4v1qqnkb40gbvkda2b46kr6n96c79qp8swx0gi7ainw0ps"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-darwin-amd64.tar.gz"; @@ -279,16 +279,16 @@ sha256 = "1yj0ciikakxmnrv9dwplp31dcldb4s7asnhg2603zh8wip8ggya2"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v1.3.0-darwin-amd64.tar.gz"; - sha256 = "11pj11zbdcsacxlkasc6n2wwz7qniirhy8kg53ir5s1crwpddf6p"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.0.0-darwin-amd64.tar.gz"; + sha256 = "09jwrr2mmhrdg3m5in8rqp16xi1657f1rzfy23qc6d184f08bn3v"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.119.0-darwin-amd64.tar.gz"; - sha256 = "03j155ia44lkcc8mjda9pj6w6qwqqyd9g8xw9j9hsflhb2j3zjh0"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.120.0-darwin-amd64.tar.gz"; + sha256 = "06mhxbxisy6chfmvx6cdhw2sl09hiwvb7rajnicxrc35w30mfch8"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.9-darwin-amd64.tar.gz"; - sha256 = "0snm481v8pbq2wmlczlmv00x46dv0rk8kjjm3ma8hq0kd2dq41a8"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-darwin-amd64.tar.gz"; + sha256 = "1jpcyp3lqiz4aab331x7shhqxzp4m6nz68vhkyqksvdplzr9rj44"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.20.0-darwin-amd64.tar.gz"; @@ -307,8 +307,8 @@ sha256 = "1d86ljhylxswbhjzsd0678r0fsi4nzimviwdl0mafny2661801bg"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.13.2-darwin-amd64.tar.gz"; - sha256 = "04kv6izmkfm3zfr01smdr80ia52mhy8mr30d9jhk6w8vazpyq7s0"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.14.0-darwin-amd64.tar.gz"; + sha256 = "0y2z582qz8gx3nkcr1dxflm6in48y93ly6r8v82y4mag05ia492x"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.9-darwin-amd64.tar.gz"; @@ -321,12 +321,12 @@ ]; aarch64-linux = [ { - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.170.0-linux-arm64.tar.gz"; - sha256 = "1bkn1yfhy8549nx266s2jfbf7c4kyg52410ffr83gpis52ifh8qa"; + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.171.0-linux-arm64.tar.gz"; + sha256 = "12kabjs974km5zii0sk9cd3wb4qpj3gn8c0v3dyybggzaabxw7lb"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.37.0-linux-arm64.tar.gz"; - sha256 = "1bj607mqlcbfszgvsyzmxvqcfgiy5bjq70d3qzys342labcz3df5"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.38.0-linux-arm64.tar.gz"; + sha256 = "1zzg4igsqnnrv4wby9bl3z63am6wayw8kyaf51qz6napp4skwqby"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v8.1.0-linux-arm64.tar.gz"; @@ -337,20 +337,20 @@ sha256 = "1nam6ihir7g00sgwy359qlx397khaic3lsvclnmkg8c4yz9ffk78"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.8.2-linux-arm64.tar.gz"; - sha256 = "0fk5b167n772fcqfsqq7w0hgv0bpqisasmiv4y40nlljkxjb826q"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.8.3-linux-arm64.tar.gz"; + sha256 = "1087l6716vy72dcm648g36mlnvx7m3nw778bby8azy5almq4v9nr"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.19.1-linux-arm64.tar.gz"; - sha256 = "1a4b7k755vbqzv6zsnsz4h8g2zgc2p17vfrnhkp1pacwkmbsiqwc"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.20.0-linux-arm64.tar.gz"; + sha256 = "1ys3rqab6hs20w0f1b73clzh1fyh78dbgdvf8q9szjkxzxjpjk2c"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.80.0-linux-arm64.tar.gz"; - sha256 = "1vnmbvfi7gghmapzkjmkp8k69d5h8fi52c6r12fsghilhsydf1wv"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.81.0-linux-arm64.tar.gz"; + sha256 = "19z7v1fazcv4wsybhsn0x2allrfpsw3drm8wh7lh5kdzcphw9agi"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.4.0-linux-arm64.tar.gz"; - sha256 = "0lpg2ipkg3rbg3cwmhr3z47kx1158bfiv59ryyxganbdj2rz0frm"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.1-linux-arm64.tar.gz"; + sha256 = "17ali0a6dwrmwka319ld7vwlrkhxic6yim21niphcda9gi9v1cs9"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.9.0-linux-arm64.tar.gz"; @@ -373,12 +373,12 @@ sha256 = "0mazlc88jcbpikvdcph0qk64riq5lfkcypgbsmckwz0ij9y7x15h"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.44.0-linux-arm64.tar.gz"; - sha256 = "1hwgp7s93l1hk7llic2fndafjhibp973hvgh59xfnahk20yxv70c"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.45.0-linux-arm64.tar.gz"; + sha256 = "0vh94fsv4jfam7ynaxqay0ilxmx1rxx95dh9sxymr5bhrn1vjr6k"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.2-linux-arm64.tar.gz"; - sha256 = "0lzq46vqbmd104xzjm58kc5k5asgwcg6wkcrnby0rmvp8mwwqw4x"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.7.0-linux-arm64.tar.gz"; + sha256 = "0n38g2lqpmqhbc5iahwlgm0sfidbsxjf50qjcnsd7sd4ld7qbfm5"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-linux-arm64.tar.gz"; @@ -389,8 +389,8 @@ sha256 = "0zqyfn995lxmfiji9di44wgz0jmc9adf63pmhjzsi5kqfw5irrkw"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.31.0-linux-arm64.tar.gz"; - sha256 = "0d9h8f6lx8w12p4x9slwhp7n2xmmpnirg6bh2bkvwwwgq5s082pz"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.32.0-linux-arm64.tar.gz"; + sha256 = "11lavhy5cgb9s5gbn7019k0c938iv1alv7w5jcmg927klrb8vryc"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.2-linux-arm64.tar.gz"; @@ -405,8 +405,8 @@ sha256 = "0d8m2krbzxjhfm82dgf8p4vm3kk9gk98l798q4ayjrddqqb4mxq4"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.22.1-linux-arm64.tar.gz"; - sha256 = "1wqnf3qpwg4cmnn7kpqchzly4hm0zylq787nydmcpflsia35bvpd"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.0-linux-arm64.tar.gz"; + sha256 = "19x8scaismr30dgfiaijn2mb0lnfv1z0vxa1gr8qn5w0yhl4qjhf"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-linux-arm64.tar.gz"; @@ -437,16 +437,16 @@ sha256 = "1dwmbcg3i02nn1nfg7z4vx4622vpyzk9c1mgrishvv6mvm037fb1"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v1.3.0-linux-arm64.tar.gz"; - sha256 = "0kpvd7vvi8h28mlz4lr8p5p4ccpc4k7wmh669g969dxi53n54vmw"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.0.0-linux-arm64.tar.gz"; + sha256 = "0y5f0avqkrh0q0lji8kpwfjy65rmn5l62a5xmfmm9ldg9rx5xjym"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.119.0-linux-arm64.tar.gz"; - sha256 = "1cn63479qlk6pdzf1vzfmq0kr57gm0xs77xjwa5s3546kcbk4jzi"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.120.0-linux-arm64.tar.gz"; + sha256 = "0zgc0phv65dfy9wwl2ll197dyd33d22zkv98b1ijg6cqzlc63ach"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.9-linux-arm64.tar.gz"; - sha256 = "0ip9s83w3n34h293z7w6nv04s7w37p4aimab7knv96g0qrl2px8l"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-linux-arm64.tar.gz"; + sha256 = "0glljz03v764n53n5l33ji64vj86ipdv5bkr03ijl8wrc22j5syy"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.20.0-linux-arm64.tar.gz"; @@ -465,8 +465,8 @@ sha256 = "0x83njg9h1gy0vld2m6kacx3hzx9bwq7c80fx8vnaaqvra0803qp"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.13.2-linux-arm64.tar.gz"; - sha256 = "14cpn3p15wmy7bwni1yq1ih2s0ilm9hhmshsmd2kxqcrd9drv016"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.14.0-linux-arm64.tar.gz"; + sha256 = "12a95axw5vrkwjyjwr8qjjchwh69ahw8jvy1nfwd58bf6x76nfxr"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.9-linux-arm64.tar.gz"; @@ -479,12 +479,12 @@ ]; aarch64-darwin = [ { - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.170.0-darwin-arm64.tar.gz"; - sha256 = "07q42q9khfqc9vbd0h9qd12m7x7md1x6ifnv8cvyrmlsmnnm86zr"; + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.171.0-darwin-arm64.tar.gz"; + sha256 = "1isyjlq08828xwx7ynkmbgnx573kvpqnvifyknbfg119lfzn9arw"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.37.0-darwin-arm64.tar.gz"; - sha256 = "09zh57ssa3h03sc15mzpkqi28l0wa0v009j7k4lq8hhhjip89xmm"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.38.0-darwin-arm64.tar.gz"; + sha256 = "0z35yjjpwas3yzr0zj4z9jigx6b6mmip7xzv6lbr3a08g6fly6nz"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-akamai-v8.1.0-darwin-arm64.tar.gz"; @@ -495,20 +495,20 @@ sha256 = "04npcfi1xn3k7qadgdxj53zkwzkh362fd599gmn3yfyab25pq7cd"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.8.2-darwin-arm64.tar.gz"; - sha256 = "0bdlsnh8axa6a2lk610z5m79pbncpwfivrn9ixj0i271irjdk3fp"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v8.8.3-darwin-arm64.tar.gz"; + sha256 = "01j87fv5i7n9wwp0r8hxscp4gn8hssi0l9a7q90g89ffb18y878x"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.19.1-darwin-arm64.tar.gz"; - sha256 = "0vlm939ax2acm53hv1194b0669lsh3glmlp4mpaln13k8qy97vcc"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v3.20.0-darwin-arm64.tar.gz"; + sha256 = "1kpwbdck4wgg2d38d0sd2yi5wfiw21ydv5igxypaqm6gh1n313pp"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.80.0-darwin-arm64.tar.gz"; - sha256 = "0dn1xrx20nk1jc5m8ca38m9h2dl72g8jzpz71xbl9mh9mfsjcvgn"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.81.0-darwin-arm64.tar.gz"; + sha256 = "124alv879949ab2g0a3l0ji5bn047wdz5hb11g8rpaq11378cmlq"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.4.0-darwin-arm64.tar.gz"; - sha256 = "10k8rclckw6qhsksbsj8rnxr9dxgf4p9gvcqzcnpq6mv7687n7xi"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v6.5.1-darwin-arm64.tar.gz"; + sha256 = "099z1by8w9vgna544d8q1v3gnp3jbssj01k75kck2sm13954idli"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v3.9.0-darwin-arm64.tar.gz"; @@ -531,12 +531,12 @@ sha256 = "1z6j18n9w9gh7zw2d76ra623miqc0dy4gf3p61x3iqhid2znc5pl"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.44.0-darwin-arm64.tar.gz"; - sha256 = "1ml703nn4y705i33s9czd2hsbasfl812427sriqq605pb197v7y1"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.45.0-darwin-arm64.tar.gz"; + sha256 = "0r57qxq26fka8i1gl71xsjc0pbnaj2yj5nqrac9yzr5qvb84k0c0"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.6.2-darwin-arm64.tar.gz"; - sha256 = "0s3damg96h9kqglwjgi733z4x9j7ild6m6j9sxkl52zk27p2a2qx"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v4.7.0-darwin-arm64.tar.gz"; + sha256 = "1psfwcpmb6w8pp9m6cf6kncl4fprr9fcp1ifpjsx8syxkgcjmjk1"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-darwin-arm64.tar.gz"; @@ -547,8 +547,8 @@ sha256 = "0lcx81s0qa13cnkm1sh640a15z650vsqxi5a59zgzq6b0r151h4r"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.31.0-darwin-arm64.tar.gz"; - sha256 = "0wn2779ciygmislrf2897cili9s8jxhcs9xphb3qdzlafx069fgj"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v8.32.0-darwin-arm64.tar.gz"; + sha256 = "0z5qnyz1l0bd758zbd77yxjfdn1bzzx54iwiqs44zyd23hpsa67h"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.7.2-darwin-arm64.tar.gz"; @@ -563,8 +563,8 @@ sha256 = "0caz4kgnnrmdr7n571xc7yqscac9jnjwwpjzbnvx4ib6a91wvsdn"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.22.1-darwin-arm64.tar.gz"; - sha256 = "0r4m89jyfamqhxczkr960h6b4cs1f14bwswhjsnpis3iynlylscp"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.23.0-darwin-arm64.tar.gz"; + sha256 = "1gdj29kmh1r4cbkzsmfgsmssrpakzrn0wn6h9y9fb1k0i3i9x56l"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.23.0-darwin-arm64.tar.gz"; @@ -595,16 +595,16 @@ sha256 = "0iikysfqf03pm7mrg383nisgh5v01bxjvxyhl2cg8bj8nsjr4s2h"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v1.3.0-darwin-arm64.tar.gz"; - sha256 = "0ccsgh89z0zbxxns4zc24l71ylkr536xcdyz4rglkzqhklrhgl89"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v2.0.0-darwin-arm64.tar.gz"; + sha256 = "1pxyws6w1ps6fg1a01yfgms5pr2m55hy7q427m0m4ihsf3320256"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.119.0-darwin-arm64.tar.gz"; - sha256 = "04f3wwcgc8w691iscfshskccsb4s459xxqdmcfvspjpwcgbqi89m"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-spotinst-v3.120.0-darwin-arm64.tar.gz"; + sha256 = "1bnajwz0q891c343qbipqvw4xwd8r658cbfivjhmydf93xv2yhdh"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.9-darwin-arm64.tar.gz"; - sha256 = "1qvhih0y7a9d5kmjz5z5r424dgb62qw3vrnbhylw6543hba9blci"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-sumologic-v1.0.11-darwin-arm64.tar.gz"; + sha256 = "1c4pn5nr8d97n9bqd7vz9gzlbi50hnfjylwwch445ylqp5l8gvqf"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.20.0-darwin-arm64.tar.gz"; @@ -623,8 +623,8 @@ sha256 = "1m2fym3b2faqi21zbl2c48l6q1aysw1279qrjx0apaj1hvyw5l16"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.13.2-darwin-arm64.tar.gz"; - sha256 = "11q6gncnxqdj4yp7mldwqhhvnmfcqvmc4v384xszwnl78fmiikrs"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.14.0-darwin-arm64.tar.gz"; + sha256 = "1ssx4z4r46lsiawb847rdc7lgbr864x3iidv866n56qab6s4hlfa"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-wavefront-v3.1.9-darwin-arm64.tar.gz"; From 4989c7fe62b0698c9c7f302b071643358589c5aa Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 08:42:15 +0000 Subject: [PATCH 041/168] trealla: 2.71.2 -> 2.71.29 --- pkgs/by-name/tr/trealla/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tr/trealla/package.nix b/pkgs/by-name/tr/trealla/package.nix index 619f9aaa31a7..e8d8753d0b06 100644 --- a/pkgs/by-name/tr/trealla/package.nix +++ b/pkgs/by-name/tr/trealla/package.nix @@ -23,13 +23,13 @@ assert lib.elem lineEditingLibrary [ ]; stdenv.mkDerivation (finalAttrs: { pname = "trealla"; - version = "2.71.2"; + version = "2.71.29"; src = fetchFromGitHub { owner = "trealla-prolog"; repo = "trealla"; rev = "v${finalAttrs.version}"; - hash = "sha256-lMzqeqf7VOe3vqiC481OpwY2c8WwewBbiwfut7TE1S8="; + hash = "sha256-i3rXmquVDfOv02q7XiY50SOeJeFBGGfJH4WsNYALk28="; }; postPatch = '' From edf8d752bc2b3f8b4b36bcafb0bfef873fdf35d9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 08:51:59 +0000 Subject: [PATCH 042/168] xgboostWithCuda: 3.0.0 -> 3.0.1 --- pkgs/by-name/xg/xgboost/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/xg/xgboost/package.nix b/pkgs/by-name/xg/xgboost/package.nix index 158bddae2e63..bfe6dd0c5ab4 100644 --- a/pkgs/by-name/xg/xgboost/package.nix +++ b/pkgs/by-name/xg/xgboost/package.nix @@ -48,14 +48,14 @@ effectiveStdenv.mkDerivation rec { # in \ # rWrapper.override{ packages = [ xgb ]; }" pname = lib.optionalString rLibrary "r-" + pnameBase; - version = "3.0.0"; + version = "3.0.1"; src = fetchFromGitHub { owner = "dmlc"; repo = pnameBase; rev = "v${version}"; fetchSubmodules = true; - hash = "sha256-OwsZ1RzVi6ba+XJqFbIW1Rmqu5OVttBfcpDe84gmQxI="; + hash = "sha256-sa8Ea/3ypHqnjn0Rl5dgqGejh6921T6JVHXo8y5gp90="; }; nativeBuildInputs = From dcd0d1b058c39922f0f59978a3c4e64aaa1477b3 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 09:00:47 +0000 Subject: [PATCH 043/168] vals: 0.41.0 -> 0.41.1 --- pkgs/by-name/va/vals/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/va/vals/package.nix b/pkgs/by-name/va/vals/package.nix index 20f8e4ca0395..9377ec7f2993 100644 --- a/pkgs/by-name/va/vals/package.nix +++ b/pkgs/by-name/va/vals/package.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "vals"; - version = "0.41.0"; + version = "0.41.1"; src = fetchFromGitHub { rev = "v${version}"; owner = "helmfile"; repo = pname; - sha256 = "sha256-548gr+piqZsFy+DoKtNaAxWaa/gBS7yYTPucj0aFWhw="; + sha256 = "sha256-zgIU4J7p7tXFTdwznC4solJD22QlizzJyBkKyCprayA="; }; - vendorHash = "sha256-/E9yT/cgYc3SkwfebJ6HwMWRaG+7LI+z26RcHenDgHk="; + vendorHash = "sha256-Kn3X/85+aZXEFSpWZf7DC8l1tM4OjZrbQXd+cFYoxjE="; proxyVendor = true; From 6d5ded3004a63db4239c285b6be48f5bf79a9b97 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 09:27:36 +0000 Subject: [PATCH 044/168] google-alloydb-auth-proxy: 1.13.1 -> 1.13.2 --- pkgs/by-name/go/google-alloydb-auth-proxy/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/go/google-alloydb-auth-proxy/package.nix b/pkgs/by-name/go/google-alloydb-auth-proxy/package.nix index 47b0cd93799f..e8e221928939 100644 --- a/pkgs/by-name/go/google-alloydb-auth-proxy/package.nix +++ b/pkgs/by-name/go/google-alloydb-auth-proxy/package.nix @@ -7,18 +7,18 @@ buildGoModule rec { pname = "google-alloydb-auth-proxy"; - version = "1.13.1"; + version = "1.13.2"; src = fetchFromGitHub { owner = "GoogleCloudPlatform"; repo = "alloydb-auth-proxy"; tag = "v${version}"; - hash = "sha256-GnuNn7nORSrgwzKnA+yx2J5pf4GV4hrN1ghEWYenJBI="; + hash = "sha256-rM++wipem+CWUbaOxh3BHlNEET7zdUHjPQN8uzZXoGM="; }; subPackages = [ "." ]; - vendorHash = "sha256-MudeGkVblLvIMhMmL9r2GNz/PjwUYscyVYDb1EJnZYw="; + vendorHash = "sha256-/VxLZoJPr0Mb5ZdyiUF7Yb4BgFef19Vj8Fkydcm7XU8="; checkFlags = [ "-short" From 80433c20dd7ef56700435b648e3bcd1d62e07d97 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 09:52:46 +0000 Subject: [PATCH 045/168] terraform-providers.digitalocean: 2.53.0 -> 2.54.0 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index ce7f37fcf97e..fed34a29df65 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -354,11 +354,11 @@ "vendorHash": "sha256-quoFrJbB1vjz+MdV+jnr7FPACHuUe5Gx9POLubD2IaM=" }, "digitalocean": { - "hash": "sha256-AWRBSdz4nS5Mi4BUqy5J0Vi/2w4qFyXzGxKdboN8aTM=", + "hash": "sha256-tj59LvvxDDxfmYfF9rN17KII6QZZOu4ymY7u8XtpSUs=", "homepage": "https://registry.terraform.io/providers/digitalocean/digitalocean", "owner": "digitalocean", "repo": "terraform-provider-digitalocean", - "rev": "v2.53.0", + "rev": "v2.54.0", "spdx": "MPL-2.0", "vendorHash": null }, From 6eeda4a21cce660c79dae7af3dfbad35d19767e6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 10:24:07 +0000 Subject: [PATCH 046/168] chirp: 0.4.0-unstable-2025-05-09 -> 0.4.0-unstable-2025-05-14 --- pkgs/by-name/ch/chirp/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ch/chirp/package.nix b/pkgs/by-name/ch/chirp/package.nix index 3fad85b9913e..79e99aa733d9 100644 --- a/pkgs/by-name/ch/chirp/package.nix +++ b/pkgs/by-name/ch/chirp/package.nix @@ -11,14 +11,14 @@ python3Packages.buildPythonApplication { pname = "chirp"; - version = "0.4.0-unstable-2025-05-09"; + version = "0.4.0-unstable-2025-05-14"; pyproject = true; src = fetchFromGitHub { owner = "kk7ds"; repo = "chirp"; - rev = "69a96dc0b3a9e01999e9d0d7feb9e1bf8a0cfa4d"; - hash = "sha256-M7c+ym12FmXALqENCIb24s3I+/pzLE82ORyr/DmFsUY="; + rev = "eb4e4547b517c3d10ede760bcd31eeb448c455dc"; + hash = "sha256-e10WFYpIy6JnPAqUcapli9Q6R0GxNwb1YjnE4cu+xfk="; }; nativeBuildInputs = [ From 224e56330f921bb0616a06c7749722384fe90555 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 10:49:16 +0000 Subject: [PATCH 047/168] python3Packages.langchain-ollama: 0.3.2 -> 0.3.3 --- pkgs/development/python-modules/langchain-ollama/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/langchain-ollama/default.nix b/pkgs/development/python-modules/langchain-ollama/default.nix index 954c1b3fb711..f9cda1e40f5d 100644 --- a/pkgs/development/python-modules/langchain-ollama/default.nix +++ b/pkgs/development/python-modules/langchain-ollama/default.nix @@ -22,14 +22,14 @@ buildPythonPackage rec { pname = "langchain-ollama"; - version = "0.3.2"; + version = "0.3.3"; pyproject = true; src = fetchFromGitHub { owner = "langchain-ai"; repo = "langchain"; tag = "langchain-ollama==${version}"; - hash = "sha256-GRaWwUR26yZqjtO5f5p8abj/4KSrQE2uGAECGjeDxPY="; + hash = "sha256-YxcxVyiPEZPvO4NyeDp8nTVfbxlOCLClWCmAlL5PPi0="; }; sourceRoot = "${src.name}/libs/partners/ollama"; From 9fd0a1ba42c0bd95d6f0604cef353d36fa22511d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 11:55:13 +0000 Subject: [PATCH 048/168] terraform-providers.buildkite: 1.17.2 -> 1.18.0 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index ce7f37fcf97e..ac042e0a6125 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -207,13 +207,13 @@ "vendorHash": "sha256-arLGaa/o9X0MYg/qIl6qhpBqcduu5Bu06FteR5KGSPw=" }, "buildkite": { - "hash": "sha256-i16wgxO2rhs/wg1In+3VYstuUrfuj/ChVO4un5wDmgk=", + "hash": "sha256-+9gxJjLVExnpWtcF1NRQoKPg0jn1zGNSkmim5YFgs4w=", "homepage": "https://registry.terraform.io/providers/buildkite/buildkite", "owner": "buildkite", "repo": "terraform-provider-buildkite", - "rev": "v1.17.2", + "rev": "v1.18.0", "spdx": "MIT", - "vendorHash": "sha256-/pzkQautZ1Db5ZUcoaLUPwP6QYqGrYYX442l5ucrocs=" + "vendorHash": "sha256-bhPpFPn1hdpSJYTvO1HWTrFRBvcm8gIDmMEGOaFjM6c=" }, "ccloud": { "hash": "sha256-Dpx0eugcHCJV8GNPqjxx4P9ohgJgB10DTnHr+CeN/iQ=", From e2c8598445241919aae90cc97139d1a55610c1e1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 12:42:30 +0000 Subject: [PATCH 049/168] python3Packages.apptools: 5.3.0 -> 5.3.1 --- pkgs/development/python-modules/apptools/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/apptools/default.nix b/pkgs/development/python-modules/apptools/default.nix index abd1f5b5cc43..e3907b29a46f 100644 --- a/pkgs/development/python-modules/apptools/default.nix +++ b/pkgs/development/python-modules/apptools/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "apptools"; - version = "5.3.0"; + version = "5.3.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "enthought"; repo = "apptools"; tag = version; - hash = "sha256-qNtDHmvl5HbtdbjnugVM7CKVCW+ysAwRB9e2Ounh808="; + hash = "sha256-46QiVLWdlM89GMCIqVNuNGJjT2nwWJ1c6DyyvEPcceQ="; }; build-system = [ setuptools ]; @@ -57,7 +57,7 @@ buildPythonPackage rec { meta = with lib; { description = "Set of packages that Enthought has found useful in creating a number of applications"; homepage = "https://github.com/enthought/apptools"; - changelog = "https://github.com/enthought/apptools/releases/tag/${version}"; + changelog = "https://github.com/enthought/apptools/releases/tag/${src.tag}"; license = licenses.bsdOriginal; maintainers = with maintainers; [ ]; }; From 65d9a3f851f898b959adfcfcc2144af96488e9f2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 13:27:59 +0000 Subject: [PATCH 050/168] sink-rotate: 2.2.0 -> 2.3.0 --- pkgs/by-name/si/sink-rotate/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/si/sink-rotate/package.nix b/pkgs/by-name/si/sink-rotate/package.nix index 02d8f7e26cf0..33e2af48f91d 100644 --- a/pkgs/by-name/si/sink-rotate/package.nix +++ b/pkgs/by-name/si/sink-rotate/package.nix @@ -7,7 +7,7 @@ makeWrapper, }: let - version = "2.2.0"; + version = "2.3.0"; in rustPlatform.buildRustPackage { pname = "sink-rotate"; @@ -17,11 +17,11 @@ rustPlatform.buildRustPackage { owner = "mightyiam"; repo = "sink-rotate"; rev = "v${version}"; - hash = "sha256-ZHbisG9pdctkwfD1S3kxMZhBqPw0Ni5Q9qQG4RssnSw="; + hash = "sha256-gGmnji7KqmCxUaeXOGMnHMI6b8AJ6Np+xVjibqgGSKM="; }; useFetchCargoVendor = true; - cargoHash = "sha256-OYFRiPAhiGbA7aNy3c4I0Tc39BNmFuP68YoBviMfbak="; + cargoHash = "sha256-7/EyDBWANoL5m9mx93LKMKD8hgcc3VgvrcLD6oTBXN8="; nativeBuildInputs = [ makeWrapper ]; From 19d91fe73e1a65520bf7882a1872a5923e9641f2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 14:02:26 +0000 Subject: [PATCH 051/168] infrastructure-agent: 1.63.1 -> 1.64.0 --- pkgs/by-name/in/infrastructure-agent/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/in/infrastructure-agent/package.nix b/pkgs/by-name/in/infrastructure-agent/package.nix index ea6c65581cf2..b559fddd63a2 100644 --- a/pkgs/by-name/in/infrastructure-agent/package.nix +++ b/pkgs/by-name/in/infrastructure-agent/package.nix @@ -6,16 +6,16 @@ }: buildGoModule rec { pname = "infrastructure-agent"; - version = "1.63.1"; + version = "1.64.0"; src = fetchFromGitHub { owner = "newrelic"; repo = "infrastructure-agent"; rev = version; - hash = "sha256-FDTZ+3rZPHCwAdC7MUR0j0i9IKBhD7Asi+j5c2zCQdk="; + hash = "sha256-kIp5it/3erPUFH22qFs8/KrFOttgrYwAT2uyHwJKHd8="; }; - vendorHash = "sha256-Oxhraf5xsnowNWZznB6JE+nCnGc3D5dOi/EWIvyv81M="; + vendorHash = "sha256-eZtO+RFw+yUjIQ03y0NOiHIFLcwEwWu5A+7wsaraCCQ="; ldflags = [ "-s" From cddade41f03e2b2e6457f349ce18c7908f715083 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 14:14:54 +0000 Subject: [PATCH 052/168] python3Packages.langfuse: 2.60.4 -> 2.60.5 --- pkgs/development/python-modules/langfuse/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/langfuse/default.nix b/pkgs/development/python-modules/langfuse/default.nix index 5a50976b6e9c..c5783e92994c 100644 --- a/pkgs/development/python-modules/langfuse/default.nix +++ b/pkgs/development/python-modules/langfuse/default.nix @@ -18,14 +18,14 @@ buildPythonPackage rec { pname = "langfuse"; - version = "2.60.4"; + version = "2.60.5"; pyproject = true; src = fetchFromGitHub { owner = "langfuse"; repo = "langfuse-python"; tag = "v${version}"; - hash = "sha256-wUTh53FatAblzIvYqy7D+kuxyWtKc426By8bsSLFa38="; + hash = "sha256-DpfbebbONJ8+7mVouvULRbGs9t1cGjOZHhk3KvaY+gM="; }; build-system = [ poetry-core ]; From a97c114cf76214e0d2df3e1d74c3880e0e77aa72 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 14:27:06 +0000 Subject: [PATCH 053/168] prometheus-redis-exporter: 1.71.0 -> 1.73.0 --- pkgs/servers/monitoring/prometheus/redis-exporter.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/redis-exporter.nix b/pkgs/servers/monitoring/prometheus/redis-exporter.nix index fecaac69fbfa..eec8e8aa1f5c 100644 --- a/pkgs/servers/monitoring/prometheus/redis-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/redis-exporter.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "redis_exporter"; - version = "1.71.0"; + version = "1.73.0"; src = fetchFromGitHub { owner = "oliver006"; repo = "redis_exporter"; rev = "v${version}"; - sha256 = "sha256-GATcHsovbS1tSWeTHeopxPqS40I6DmCNK6faWR4oMus="; + sha256 = "sha256-yQurt8LCJR/vbnRo1Al6LUPiCSbGNFKmYDi4nFwrlfM="; }; vendorHash = "sha256-gp2TRIv3sotQlKd4dJq1B8U2YoKCQirbQUU7SimG2K8="; From 501598e655adb22e957cb3b47de7758c7e032d07 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 15:05:31 +0000 Subject: [PATCH 054/168] tigerbeetle: 0.16.39 -> 0.16.41 --- pkgs/by-name/ti/tigerbeetle/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ti/tigerbeetle/package.nix b/pkgs/by-name/ti/tigerbeetle/package.nix index f66badc70448..17f0d4c970d4 100644 --- a/pkgs/by-name/ti/tigerbeetle/package.nix +++ b/pkgs/by-name/ti/tigerbeetle/package.nix @@ -10,14 +10,14 @@ let platform = if stdenvNoCC.hostPlatform.isDarwin then "universal-macos" else stdenvNoCC.hostPlatform.system; hash = builtins.getAttr platform { - "universal-macos" = "sha256-fpAVZK0NauxseFFpQChNW1o/oE8Go29Ie/xImW1AbiY="; - "x86_64-linux" = "sha256-tosXTaJ4FTJuL3CvGbQPtpFKXRvp7tWvoyHQjehK+Ak="; - "aarch64-linux" = "sha256-7XjSlWu75az73W2A5dEAPd35G+GEAE0t1tZhrqnbqPE="; + "universal-macos" = "sha256-RSP9nJ2dmLGci4v2iPRzE//QzAY1m7ZdzCkN43k3w8A="; + "x86_64-linux" = "sha256-Xy3kGShqaTbuf9BLx4fUahZrrby2r04+nmuHwDxENMo="; + "aarch64-linux" = "sha256-98BAH7yb6I1kG7j/zJyoFEwS1jBjF3oEM/YKk32bbZY="; }; in stdenvNoCC.mkDerivation (finalAttrs: { pname = "tigerbeetle"; - version = "0.16.39"; + version = "0.16.41"; src = fetchzip { url = "https://github.com/tigerbeetle/tigerbeetle/releases/download/${finalAttrs.version}/tigerbeetle-${platform}.zip"; From b0aea756332fbd8e5bc4b782e6873f6e70e524dd Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 15:12:59 +0000 Subject: [PATCH 055/168] shadowsocks-rust: 1.23.3 -> 1.23.4 --- pkgs/by-name/sh/shadowsocks-rust/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sh/shadowsocks-rust/package.nix b/pkgs/by-name/sh/shadowsocks-rust/package.nix index c0eefbe76bdb..cc71bf5b893c 100644 --- a/pkgs/by-name/sh/shadowsocks-rust/package.nix +++ b/pkgs/by-name/sh/shadowsocks-rust/package.nix @@ -9,17 +9,17 @@ rustPlatform.buildRustPackage rec { pname = "shadowsocks-rust"; - version = "1.23.3"; + version = "1.23.4"; src = fetchFromGitHub { owner = "shadowsocks"; repo = "shadowsocks-rust"; tag = "v${version}"; - hash = "sha256-gUCDHk6Z3w3ajtYV8s0TXXnJCiHhOdMZRcIK4uPnQ2M="; + hash = "sha256-YUDPD46EVCJe/FFUaSyDDSXPk87CiGduzFyPtjr2fDI="; }; useFetchCargoVendor = true; - cargoHash = "sha256-DsdVvYznh9i3d3UdcKOCYRoisP8BAJ6XLV2JbFhEr5M="; + cargoHash = "sha256-E4vhgaUtUTNt+tRrLxDNXICMIH8N3EL+mkC9Ga+lI70="; nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ]; From 6369f38b29dd9414a1ab3ed1404cf063693a798c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 15:23:56 +0000 Subject: [PATCH 056/168] terraform-providers.google: 6.34.0 -> 6.36.1 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index ce7f37fcf97e..bb4762b5f071 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -507,11 +507,11 @@ "vendorHash": "sha256-3URc3A1kkcVQ/riB2/THuIEiCq9MrifxgRL73cjsbDA=" }, "google": { - "hash": "sha256-dqnmTAIcbqdRMk+0C24ZzcEycAM+vW9JuT1sCTamuK8=", + "hash": "sha256-q/BFHpA3ig0QfB0mhJGqr/uQYs/SH5YX8QgWCyjcSio=", "homepage": "https://registry.terraform.io/providers/hashicorp/google", "owner": "hashicorp", "repo": "terraform-provider-google", - "rev": "v6.34.0", + "rev": "v6.36.1", "spdx": "MPL-2.0", "vendorHash": "sha256-rGpnPH8ebHXasvelGoJEUU4YbeGJY4adFBbgAHJ8vSs=" }, From f155a0e66ed6ec061481b8da98445f6146b5d066 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 15:41:06 +0000 Subject: [PATCH 057/168] python3Packages.smpclient: 4.4.2 -> 4.5.0 --- pkgs/development/python-modules/smpclient/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/smpclient/default.nix b/pkgs/development/python-modules/smpclient/default.nix index 7b51f0955b9d..a9a7210b8b7c 100644 --- a/pkgs/development/python-modules/smpclient/default.nix +++ b/pkgs/development/python-modules/smpclient/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "smpclient"; - version = "4.4.2"; + version = "4.5.0"; pyproject = true; src = fetchFromGitHub { owner = "intercreate"; repo = "smpclient"; tag = version; - hash = "sha256-qbf0xGK1RYaeEIAsbkZ2cWj/MQrmVwm2IKmOkihxBDE="; + hash = "sha256-Z0glcCy3JsL45iT8Q82Vtxozi3hv6xaRJvJ3BkHX4PQ="; }; build-system = [ @@ -52,7 +52,7 @@ buildPythonPackage rec { meta = { description = "Simple Management Protocol (SMP) Client for remotely managing MCU firmware"; homepage = "https://github.com/intercreate/smpclient"; - changelog = "https://github.com/intercreate/smpclient/releases/tag/${version}"; + changelog = "https://github.com/intercreate/smpclient/releases/tag/${src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ otavio ]; }; From c557eb5a017d357c9a1258e65bd5a176b723534b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 15:46:17 +0000 Subject: [PATCH 058/168] rbspy: 0.33.0 -> 0.34.0 --- pkgs/by-name/rb/rbspy/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/rb/rbspy/package.nix b/pkgs/by-name/rb/rbspy/package.nix index f9d9d1c694d3..067eeeed9db9 100644 --- a/pkgs/by-name/rb/rbspy/package.nix +++ b/pkgs/by-name/rb/rbspy/package.nix @@ -10,17 +10,17 @@ rustPlatform.buildRustPackage rec { pname = "rbspy"; - version = "0.33.0"; + version = "0.34.0"; src = fetchFromGitHub { owner = "rbspy"; repo = "rbspy"; tag = "v${version}"; - hash = "sha256-JvlFVoYGPPe3WJgS1MS3GHGpZcGpRh8Yg+8NwARJ3eI="; + hash = "sha256-yVcVuMCyvk9RbkbKomqjkLY+p5tUzW2zcAKZ8XfsjM0="; }; useFetchCargoVendor = true; - cargoHash = "sha256-DDWsp8EzqbRyal6/x1hQE1sOdtBt1qACzd2f5wmsiHg="; + cargoHash = "sha256-WiIHFwB6BE9VYuC2dCHNnrEFjVsesp0c5i4bH01cXis="; # error: linker `aarch64-linux-gnu-gcc` not found postPatch = '' From 602a2c558a52a1eb5796dd6d52192575c6089c19 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 16:09:26 +0000 Subject: [PATCH 059/168] python3Packages.gflanguages: 0.7.3 -> 0.7.4 --- pkgs/development/python-modules/gflanguages/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/gflanguages/default.nix b/pkgs/development/python-modules/gflanguages/default.nix index aa64d93e2dc8..7f3c3e20d79f 100644 --- a/pkgs/development/python-modules/gflanguages/default.nix +++ b/pkgs/development/python-modules/gflanguages/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "gflanguages"; - version = "0.7.3"; + version = "0.7.4"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-BRbPD61qb1/CBPhv/jGmiLDdd2mHFqCughYDuaeBo54="; + hash = "sha256-d/Q5Kh/ApXP0AcNOuATy8GyssLcNUjboQPEj1Q48tuA="; }; # Relax the dependency on protobuf 3. Other packages in the Google Fonts From 26028f2d06608a2135fbc727bf8abde59205b031 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 17:43:25 +0000 Subject: [PATCH 060/168] terraform-providers.azuread: 3.3.0 -> 3.4.0 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index ce7f37fcf97e..e1c01444848f 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -126,11 +126,11 @@ "vendorHash": "sha256-iYVzLsyX17GYd05CTqCMpEy1oDCiNi5F4Xiu0Lp9nTg=" }, "azuread": { - "hash": "sha256-64afLKTgJ58O9GUv3GRTJKw7xgg0cglIv3EvARsxnn0=", + "hash": "sha256-lNjU/206yS+smSe1SYlz0TOqHRlvSQKqhJ67fswNlIQ=", "homepage": "https://registry.terraform.io/providers/hashicorp/azuread", "owner": "hashicorp", "repo": "terraform-provider-azuread", - "rev": "v3.3.0", + "rev": "v3.4.0", "spdx": "MPL-2.0", "vendorHash": null }, From 6c65c631dd1cf5df21ffe2dbe2295e3695e5f364 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 17:44:47 +0000 Subject: [PATCH 061/168] terraform-providers.rootly: 2.27.0 -> 2.27.1 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index ce7f37fcf97e..6e8a94853c01 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1102,13 +1102,13 @@ "vendorHash": "sha256-xo0alLK3fccbKRG5bN1G7orDsP47I3ySAzpZ9O0f2Fg=" }, "rootly": { - "hash": "sha256-oAxjqJnA8kg7j9THplkCdcG4eVTpRKtenUIuAmeUULI=", + "hash": "sha256-SwZm4XCQUf3TQ6m77fAnhHMoW6ckpO5XSnjpEYuNyec=", "homepage": "https://registry.terraform.io/providers/rootlyhq/rootly", "owner": "rootlyhq", "repo": "terraform-provider-rootly", - "rev": "v2.27.0", + "rev": "v2.27.1", "spdx": "MPL-2.0", - "vendorHash": "sha256-IJJjA7SCQib5GdqbS2rnZtbBNB8sYYPYH+vHMGf1Bfk=" + "vendorHash": "sha256-KezwDRmQQj0MnmsVlrX1OhNG6oMgw8fCxX5VFGdUynw=" }, "rundeck": { "hash": "sha256-cf+0qXpgxIsc/JbB7+u3MpmWFwUmpsinp1uARRhuBw0=", From 03d30e41968ac535c5821b0f5d3dc63b97888efc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 22 May 2025 21:26:09 +0200 Subject: [PATCH 062/168] python312Packages.functions-framework: 3.8.2 -> 3.8.3 Diff: https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v3.8.2...v3.8.3 Changelog: https://github.com/GoogleCloudPlatform/functions-framework-python/blob/v3.8.3/CHANGELOG.md --- .../python-modules/functions-framework/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/functions-framework/default.nix b/pkgs/development/python-modules/functions-framework/default.nix index b9df27a48b5f..c519ba0a70fb 100644 --- a/pkgs/development/python-modules/functions-framework/default.nix +++ b/pkgs/development/python-modules/functions-framework/default.nix @@ -19,14 +19,14 @@ buildPythonPackage rec { pname = "functions-framework"; - version = "3.8.2"; + version = "3.8.3"; pyproject = true; src = fetchFromGitHub { owner = "GoogleCloudPlatform"; repo = "functions-framework-python"; rev = "v${version}"; - hash = "sha256-wLL8VWhRb3AEa41DO/mwx3G0AwmLACiXeDvo+LEq1xM="; + hash = "sha256-kfoSGe08vCOXunzFH5FA7/NesOwAklfChKeoIfBXBlQ="; }; build-system = [ setuptools ]; From 8c55a47d0a7bc73d0a69b33f5ad54b87639e1fd7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 19:28:15 +0000 Subject: [PATCH 063/168] star-history: 1.0.30 -> 1.0.31 --- pkgs/by-name/st/star-history/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/st/star-history/package.nix b/pkgs/by-name/st/star-history/package.nix index 8701b9450836..88d582067732 100644 --- a/pkgs/by-name/st/star-history/package.nix +++ b/pkgs/by-name/st/star-history/package.nix @@ -8,15 +8,15 @@ rustPlatform.buildRustPackage rec { pname = "star-history"; - version = "1.0.30"; + version = "1.0.31"; src = fetchCrate { inherit pname version; - hash = "sha256-QTTBWuRXjx7UEMjnrIb4KQW+rtyKy4Q0Hu7OLt1Dph0="; + hash = "sha256-AxaJK39QkhTTATKh+lYzS3zxAlIElJUyOaUCi2pjXhQ="; }; useFetchCargoVendor = true; - cargoHash = "sha256-2GwZtNbUbdzxK31Gh4U2LsFkzV1ylXkZnP5r5FQ/hvU="; + cargoHash = "sha256-sXqUbG6GlesC6NtM+xwzopuyswIezr8CLzidCx6fMQk="; nativeBuildInputs = [ pkg-config ]; From a4ac9787df99d312ac8b8ab7f1971be6921c7dfa Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 19:48:47 +0000 Subject: [PATCH 064/168] nginx-config-formatter: 1.2.3 -> 1.3.0 --- pkgs/by-name/ng/nginx-config-formatter/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ng/nginx-config-formatter/package.nix b/pkgs/by-name/ng/nginx-config-formatter/package.nix index f475464bd5f4..4593260d0ba7 100644 --- a/pkgs/by-name/ng/nginx-config-formatter/package.nix +++ b/pkgs/by-name/ng/nginx-config-formatter/package.nix @@ -6,14 +6,14 @@ }: stdenv.mkDerivation rec { - version = "1.2.3"; + version = "1.3.0"; pname = "nginx-config-formatter"; src = fetchFromGitHub { owner = "slomkowski"; repo = "nginx-config-formatter"; rev = "v${version}"; - sha256 = "sha256-nYaBdVsq7aLE9P1bQlJlQkrk/cq7C1hxM5XtCGyEzC0="; + sha256 = "sha256-0jXm82a4bYpbOJnz+y7+dSg1LZy1Mu28IgBxd24Y5ck="; }; buildInputs = [ python3 ]; From 08a4c225d5922b1d66926fe694c9d764109740a6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 19:48:48 +0000 Subject: [PATCH 065/168] kool: 3.4.0 -> 3.5.0 --- pkgs/by-name/ko/kool/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ko/kool/package.nix b/pkgs/by-name/ko/kool/package.nix index 5a419b22c44f..8ad93a44e022 100644 --- a/pkgs/by-name/ko/kool/package.nix +++ b/pkgs/by-name/ko/kool/package.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "kool"; - version = "3.4.0"; + version = "3.5.0"; src = fetchFromGitHub { owner = "kool-dev"; repo = "kool"; rev = version; - hash = "sha256-UVdkymG9Ni83NhGRAXalJiLbpn3xzNl0quew+vDfyec="; + hash = "sha256-iB/9owaBNQVzdA4edrx0zl+COs7yVLs61Mij5kfjEhg="; }; - vendorHash = "sha256-3PLSFPL0S18Bb6CB4UOgtRcUMbePHweDlrpAIhTho7M="; + vendorHash = "sha256-IqUkIf0uk4iUTedTO5xRzjmJwHS+p6apo4E0WEEU6cc="; ldflags = [ "-s" From a8625af10c3505b5222573e6403bf64a8babc98e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 19:49:12 +0000 Subject: [PATCH 066/168] okta-aws-cli: 2.4.1 -> 2.5.0 --- pkgs/by-name/ok/okta-aws-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ok/okta-aws-cli/package.nix b/pkgs/by-name/ok/okta-aws-cli/package.nix index 10a9d4ea348c..45276e8facb0 100644 --- a/pkgs/by-name/ok/okta-aws-cli/package.nix +++ b/pkgs/by-name/ok/okta-aws-cli/package.nix @@ -6,7 +6,7 @@ buildGoModule rec { pname = "okta-aws-cli"; - version = "2.4.1"; + version = "2.5.0"; subPackages = [ "cmd/okta-aws-cli" ]; @@ -14,7 +14,7 @@ buildGoModule rec { owner = "okta"; repo = "okta-aws-cli"; rev = "v${version}"; - sha256 = "sha256-4S7pXPdHUgMNg+3bCsalEH9m9Hl15mX9IEl2eBqIWqA="; + sha256 = "sha256-IGecHT/JVKsaHG9OtPTOlu+ZCDbnqf1h3s4SI7+8oT8="; }; vendorHash = "sha256-MnK0zCwPOTzsPrkULEYwnmIBmVrPiwK2yDr3tqVHHRY="; From e6a588d058f52e015ade136c685864f471c90ad1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 19:51:27 +0000 Subject: [PATCH 067/168] netassert: 2.0.3 -> 2.0.4 --- pkgs/by-name/ne/netassert/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ne/netassert/package.nix b/pkgs/by-name/ne/netassert/package.nix index a03870c42450..adb140612983 100644 --- a/pkgs/by-name/ne/netassert/package.nix +++ b/pkgs/by-name/ne/netassert/package.nix @@ -6,15 +6,15 @@ buildGoModule rec { pname = "netassert"; - version = "2.0.3"; + version = "2.0.4"; src = fetchFromGitHub { owner = "controlplaneio"; repo = "netassert"; rev = "v${version}"; - hash = "sha256-mRKjo0AfnM+XTl7sQoGDyQoquXpD3xPJ6i3/3Dj2rhE="; + hash = "sha256-72LwWzn9sQNbtPj8X0WsR0j0Cs0s00ogcYfQqULTffw="; }; - vendorHash = "sha256-9mvSfAd1m95eRwljGG68+tjiFObgt1EuakjwFfn9Obo="; + vendorHash = "sha256-JuyE1pYlTIeG3IGOsvYgQN1lTAb7NWytkp/Ibh91QgA="; ldflags = [ "-s" From 501e829ed2cc9ec7946c56c249a7c25b70cea9eb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 20:17:23 +0000 Subject: [PATCH 068/168] credhub-cli: 2.9.45 -> 2.9.46 --- pkgs/by-name/cr/credhub-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/cr/credhub-cli/package.nix b/pkgs/by-name/cr/credhub-cli/package.nix index 083965598479..4c6a7801ca99 100644 --- a/pkgs/by-name/cr/credhub-cli/package.nix +++ b/pkgs/by-name/cr/credhub-cli/package.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "credhub-cli"; - version = "2.9.45"; + version = "2.9.46"; src = fetchFromGitHub { owner = "cloudfoundry-incubator"; repo = "credhub-cli"; rev = version; - sha256 = "sha256-WOiUA2Bk6/ymV2wqPu4a4x0SL1TZXsZOTALta8ZMu6I="; + sha256 = "sha256-g5Wa+noAcip4My8epfzLZos1wo/J85v5x0G2rwgJLtE="; }; # these tests require network access that we're not going to give them From c4c1055de2bfa83a5ecacdb222d143e538a4dd93 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 20:36:51 +0000 Subject: [PATCH 069/168] cargo-tally: 1.0.63 -> 1.0.64 --- pkgs/by-name/ca/cargo-tally/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ca/cargo-tally/package.nix b/pkgs/by-name/ca/cargo-tally/package.nix index 5f54ba0c9d87..60a15283ddd7 100644 --- a/pkgs/by-name/ca/cargo-tally/package.nix +++ b/pkgs/by-name/ca/cargo-tally/package.nix @@ -6,15 +6,15 @@ rustPlatform.buildRustPackage rec { pname = "cargo-tally"; - version = "1.0.63"; + version = "1.0.64"; src = fetchCrate { inherit pname version; - hash = "sha256-SNTqoxguv+HRdTLBL+cxUGNmprlC6VnpZ8xp6tKr+is="; + hash = "sha256-5eRDKGocAdK8jyDrbEOEQxS4ykneTDbDfXvVU/AH4f8="; }; useFetchCargoVendor = true; - cargoHash = "sha256-gpGBXh1qR5cFZXDSYKDYg8d4/A/K88dYSUb9mNrmGno="; + cargoHash = "sha256-9p5IfGfOWyDanaUt1h6bnq4mDxp+VdU4scNdWGRiWYE="; meta = with lib; { description = "Graph the number of crates that depend on your crate over time"; From dc9fc0e334264465ac797d4f4a54b782673552af Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 21:05:06 +0000 Subject: [PATCH 070/168] gitlab-ci-ls: 1.0.5 -> 1.1.0 --- pkgs/by-name/gi/gitlab-ci-ls/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gi/gitlab-ci-ls/package.nix b/pkgs/by-name/gi/gitlab-ci-ls/package.nix index 29a8de572a53..9e4363e4bc51 100644 --- a/pkgs/by-name/gi/gitlab-ci-ls/package.nix +++ b/pkgs/by-name/gi/gitlab-ci-ls/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage rec { pname = "gitlab-ci-ls"; - version = "1.0.5"; + version = "1.1.0"; src = fetchFromGitHub { owner = "alesbrelih"; repo = "gitlab-ci-ls"; rev = "${version}"; - hash = "sha256-nfcG1fGmWutWwyROlTEnKN2+wPVmDkN0Z1VKdZDHGmU="; + hash = "sha256-ULkRF/NtlETStG/Qy0Y7qUAzMvOlOvxErKJ79atgCaw="; }; useFetchCargoVendor = true; - cargoHash = "sha256-I8LSN50uSEAGAlaQzscAZWUqRpLUq+7gfzdj0UPkg4o="; + cargoHash = "sha256-1HHwAGN193cNoOktVkrwgS37FJEK++tGMD//RnIALQA="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ]; From 21550010a6f24003311319e0760bb6bd7714efc7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 22:01:33 +0000 Subject: [PATCH 071/168] terraform-providers.aws: 5.97.0 -> 5.98.0 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index ce7f37fcf97e..96bafd2d4dcb 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -117,13 +117,13 @@ "vendorHash": null }, "aws": { - "hash": "sha256-wTig0NyANYdITXus9FB7WGQ6BQED7jaVhBYgDzZaU5g=", + "hash": "sha256-gBVJx6rk7rjrvyLaDJrHUmLRUbvgy60c/uQwsFXuQzA=", "homepage": "https://registry.terraform.io/providers/hashicorp/aws", "owner": "hashicorp", "repo": "terraform-provider-aws", - "rev": "v5.97.0", + "rev": "v5.98.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-iYVzLsyX17GYd05CTqCMpEy1oDCiNi5F4Xiu0Lp9nTg=" + "vendorHash": "sha256-OxyOD/um7hOpYpsZCyNnbdvo5K/r/L7JlWvXQBncIDw=" }, "azuread": { "hash": "sha256-64afLKTgJ58O9GUv3GRTJKw7xgg0cglIv3EvARsxnn0=", From 56f42e5df5b370d814a8ee9b5ed501a17014e444 Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Thu, 22 May 2025 15:05:35 -0700 Subject: [PATCH 072/168] signalbackup-tools: 20250519 -> 20250522 Diff: https://github.com/bepaald/signalbackup-tools/compare/20250519...20250522 --- pkgs/by-name/si/signalbackup-tools/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/si/signalbackup-tools/package.nix b/pkgs/by-name/si/signalbackup-tools/package.nix index 02627f9e0241..67408a76f914 100644 --- a/pkgs/by-name/si/signalbackup-tools/package.nix +++ b/pkgs/by-name/si/signalbackup-tools/package.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "signalbackup-tools"; - version = "20250519"; + version = "20250522"; src = fetchFromGitHub { owner = "bepaald"; repo = "signalbackup-tools"; rev = version; - hash = "sha256-4h6eYP7Lvagm0GmkwtK1CNa/FaaWj0A78Ralevjmj5I="; + hash = "sha256-gfwlFvLoOPqL4GfV+Xv2m+afsfXjWR1gumn9VHp3etU="; }; nativeBuildInputs = From 79ea7a46ca5ed31562c67061d66307e8fa165044 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 22:49:59 +0000 Subject: [PATCH 073/168] protolint: 0.54.0 -> 0.55.5 --- pkgs/by-name/pr/protolint/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/pr/protolint/package.nix b/pkgs/by-name/pr/protolint/package.nix index a9d3dbd0eeca..de46acfae0fd 100644 --- a/pkgs/by-name/pr/protolint/package.nix +++ b/pkgs/by-name/pr/protolint/package.nix @@ -5,16 +5,16 @@ }: buildGoModule rec { pname = "protolint"; - version = "0.54.0"; + version = "0.55.5"; src = fetchFromGitHub { owner = "yoheimuta"; repo = pname; rev = "v${version}"; - hash = "sha256-TVDF9q/lZAVs/a/czQZoxTRFtqae6ySpv80m9XlNpBE="; + hash = "sha256-uim4M1C51VVCOhcE/dyCLzx/Bks0h50+haw5mbAfiN8="; }; - vendorHash = "sha256-FRCLa8kpJlmnyp+kczgSUx0USMWtR9Hj09HIE2nGY8k="; + vendorHash = "sha256-Zt1HbmdUpQmmK+404tfSs6qfZxZEqHIgQBoN63Els3M="; # Something about the way we run tests causes issues. It doesn't happen # when using "go test" directly: From 6d062d657a11f00ef0eb1c161c3cc2d3b7be8b5d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 23:27:33 +0000 Subject: [PATCH 074/168] python3Packages.types-beautifulsoup4: 4.12.0.20250204 -> 4.12.0.20250516 --- .../python-modules/types-beautifulsoup4/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/types-beautifulsoup4/default.nix b/pkgs/development/python-modules/types-beautifulsoup4/default.nix index bc14576f7a57..6a56dd74bdaa 100644 --- a/pkgs/development/python-modules/types-beautifulsoup4/default.nix +++ b/pkgs/development/python-modules/types-beautifulsoup4/default.nix @@ -8,13 +8,13 @@ buildPythonPackage rec { pname = "types-beautifulsoup4"; - version = "4.12.0.20250204"; + version = "4.12.0.20250516"; pyproject = true; src = fetchPypi { pname = "types_beautifulsoup4"; inherit version; - hash = "sha256-8IPY7cvQEnn4w5lbVs//LQHxu4lMO1AroRjTb7vElb8="; + hash = "sha256-qhndc7M7cNYpat+S2oq4oMlFxQfm+31dtVNBXMd7QX4="; }; build-system = [ setuptools ]; From 541dc1c327f9e15c32cd2218b52ff21e49c7cdd9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 22 May 2025 23:57:52 +0000 Subject: [PATCH 075/168] python3Packages.gftools: 0.9.81 -> 0.9.85 --- pkgs/development/python-modules/gftools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/gftools/default.nix b/pkgs/development/python-modules/gftools/default.nix index fbf2d936b531..720335d69654 100644 --- a/pkgs/development/python-modules/gftools/default.nix +++ b/pkgs/development/python-modules/gftools/default.nix @@ -61,14 +61,14 @@ let in buildPythonPackage rec { pname = "gftools"; - version = "0.9.81"; + version = "0.9.85"; pyproject = true; src = fetchFromGitHub { owner = "googlefonts"; repo = "gftools"; tag = "v${version}"; - hash = "sha256-+9M3PM9LM1/nqNstdAVlF/sF2Xl/xeZN3L8RvjywEIU="; + hash = "sha256-D7s4msdJFiBlIvREiOqLACDwciNi9Di0dRB+qLpfhFY="; }; postPatch = '' From 1c4697be5426f9318098a4bb81b05207bb0b01b0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 01:07:58 +0000 Subject: [PATCH 076/168] container2wasm: 0.8.1 -> 0.8.2 --- pkgs/by-name/co/container2wasm/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/co/container2wasm/package.nix b/pkgs/by-name/co/container2wasm/package.nix index 8db352772f59..5ac86025b6bb 100644 --- a/pkgs/by-name/co/container2wasm/package.nix +++ b/pkgs/by-name/co/container2wasm/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "container2wasm"; - version = "0.8.1"; + version = "0.8.2"; src = fetchFromGitHub { owner = "ktock"; repo = "container2wasm"; tag = "v${version}"; - hash = "sha256-detM0A8pm65VmEuEh7Xc+LcXfz4aq9p46NvJtdzfzAA="; + hash = "sha256-uMZD2FytXNK9XErSsiuUVDTeQ+Pjx0RrDnGa7Sj8MsY="; }; - vendorHash = "sha256-G75YojD+GR1C++crDkWS3A4nrUI9HwZfxmKpdNZ7qYY="; + vendorHash = "sha256-RqLhGDmtSthYh9GexFuTjLHp9kL7QvyL+O27+5suhlA="; ldflags = [ "-s" From c840580ee9df8e55e315e4f166d82e7d3f3aade6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 01:10:45 +0000 Subject: [PATCH 077/168] goconst: 1.8.1 -> 1.8.2 --- pkgs/by-name/go/goconst/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/go/goconst/package.nix b/pkgs/by-name/go/goconst/package.nix index 6dc8cc6b8074..10bc1b97bfd3 100644 --- a/pkgs/by-name/go/goconst/package.nix +++ b/pkgs/by-name/go/goconst/package.nix @@ -6,7 +6,7 @@ buildGoModule rec { pname = "goconst"; - version = "1.8.1"; + version = "1.8.2"; excludedPackages = [ "tests" ]; @@ -14,7 +14,7 @@ buildGoModule rec { owner = "jgautheron"; repo = "goconst"; rev = "v${version}"; - sha256 = "sha256-pvCmCf3ZjhB4lxP6GLO6vnhNswKdNDWgD2YyHmRi6oE="; + sha256 = "sha256-srBUqWfiuMqpKH/O66gJEEKFOC/ifsu2xscEnp54cRY="; }; vendorHash = null; From 296e9aa675923600e3fb2e47946463868933126a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 01:52:52 +0000 Subject: [PATCH 078/168] qdrant-web-ui: 0.1.39 -> 0.1.40 --- pkgs/by-name/qd/qdrant-web-ui/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/qd/qdrant-web-ui/package.nix b/pkgs/by-name/qd/qdrant-web-ui/package.nix index d16c33ea5354..7c6fb3c2dc8f 100644 --- a/pkgs/by-name/qd/qdrant-web-ui/package.nix +++ b/pkgs/by-name/qd/qdrant-web-ui/package.nix @@ -5,16 +5,16 @@ }: buildNpmPackage rec { pname = "qdrant-web-ui"; - version = "0.1.39"; + version = "0.1.40"; src = fetchFromGitHub { owner = "qdrant"; repo = "qdrant-web-ui"; tag = "v${version}"; - hash = "sha256-xMVLZoboDiFYIPNkNgRuJQ0aUVi0Z8qHnD2ExTiIEwE="; + hash = "sha256-fkgTQZ5172T/reUk9luv9lWON1gkRO6sXPUmfe6f4oc="; }; - npmDepsHash = "sha256-HT7Lm4PUhVx/HJpeYpni3ZXZ/53Fyq2iTNtpK64XPtU="; + npmDepsHash = "sha256-tET15Dcu8V7ssHgjC09w2zcFSU8Oyb0V+nlpptxmqjo="; npmBuildScript = "build-qdrant"; From 72d1bc336195da77bb68489a43b0c24bfdb0aada Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 02:23:01 +0000 Subject: [PATCH 079/168] wakatime-cli: 1.115.2 -> 1.115.3 --- pkgs/by-name/wa/wakatime-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/wa/wakatime-cli/package.nix b/pkgs/by-name/wa/wakatime-cli/package.nix index 0d3bc03d7bbb..799322691404 100644 --- a/pkgs/by-name/wa/wakatime-cli/package.nix +++ b/pkgs/by-name/wa/wakatime-cli/package.nix @@ -10,13 +10,13 @@ buildGoModule rec { pname = "wakatime-cli"; - version = "1.115.2"; + version = "1.115.3"; src = fetchFromGitHub { owner = "wakatime"; repo = "wakatime-cli"; tag = "v${version}"; - hash = "sha256-8Vgbm7yOb33hVwPNyl1x8egAJKiWvBo4ldp8bkUbd9A="; + hash = "sha256-czoAX9CKvIZjODeKcadX9vzBhOcMeyjwbljv1PrMtOg="; }; vendorHash = "sha256-1yqpz3DqWHXw3ihh7YAKtl5Co91VAbBMRu68S/igrMc="; From e1a5818d487c7d021fe9f53f323970d4a8f29f03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Fri, 23 May 2025 02:30:08 +0000 Subject: [PATCH 080/168] nixosTests.turbovnc-headless-server: Remove expected-failing test. It doesn't fail as expected anymore because `LIBGL_DRIVERS_PATH` was removed in Mesa 24.2, and apparently there's no replacement for it: https://github.com/NixOS/nixpkgs/issues/328923 Given that it was removed, and https://www.phoronix.com/news/Mesa-24.2-Modern-Interfaces and https://www.supergoodcode.com/long-road-to-DRIL/ saying that removes the problem it originally caused (also for us), this test is probably superfluous because the thing it guards against is gone. --- nixos/tests/turbovnc-headless-server.nix | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/nixos/tests/turbovnc-headless-server.nix b/nixos/tests/turbovnc-headless-server.nix index f51968e29b29..6b3ade7179ff 100644 --- a/nixos/tests/turbovnc-headless-server.nix +++ b/nixos/tests/turbovnc-headless-server.nix @@ -120,24 +120,6 @@ import ./make-test-python.nix ( ) - # Checks that we detect glxgears failing when - # `LIBGL_DRIVERS_PATH=/nonexistent` is set - # (in which case software rendering should not work). - def test_glxgears_failing_with_bad_driver_path(): - machine.execute( - # Note trailing & for backgrounding. - "(env DISPLAY=:0 LIBGL_DRIVERS_PATH=/nonexistent glxgears -info | tee /tmp/glxgears-should-fail.stdout) 3>&1 1>&2 2>&3 | tee /tmp/glxgears-should-fail.stderr >&2 &" - ) - machine.wait_until_succeeds("test -f /tmp/glxgears-should-fail.stderr") - wait_until_terminated_or_succeeds( - termination_check_shell_command="pidof glxgears", - success_check_shell_command="grep 'MESA-LOADER: failed to open swrast' /tmp/glxgears-should-fail.stderr", - get_detail_message_fn=lambda: "Contents of /tmp/glxgears-should-fail.stderr:\n" - + machine.succeed("cat /tmp/glxgears-should-fail.stderr"), - ) - machine.wait_until_fails("pidof glxgears") - - # Starts glxgears, backgrounding it. Waits until it prints the `GL_RENDERER`. # Does not quit glxgears. def test_glxgears_prints_renderer(): @@ -158,9 +140,6 @@ import ./make-test-python.nix ( start_xvnc() wait_until_xvnc_glx_ready() - with subtest("Ensure bad driver path makes glxgears fail"): - test_glxgears_failing_with_bad_driver_path() - with subtest("Run 3D application (glxgears)"): test_glxgears_prints_renderer() @@ -170,8 +149,6 @@ import ./make-test-python.nix ( # Copy files down. machine.copy_from_vm("/tmp/glxgears.png") machine.copy_from_vm("/tmp/glxgears.stdout") - machine.copy_from_vm("/tmp/glxgears-should-fail.stdout") - machine.copy_from_vm("/tmp/glxgears-should-fail.stderr") machine.copy_from_vm("/tmp/Xvnc.stdout") machine.copy_from_vm("/tmp/Xvnc.stderr") ''; From c9a74e546d61d464726a3ae29c843a31d8a4c81f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Thu, 22 May 2025 12:19:01 +0000 Subject: [PATCH 081/168] turbovnc: 3.1.4 -> 3.2 * `-DTVNC_*` flags are no longer necessary, as the comment explains. * `-DTJPEG_JAR` and `-DTJPEG_JNILIBRARY` were already removed in turbovnc 3.0beta1, commit https://github.com/TurboVNC/turbovnc/commit/4d9a87732fdf26a772deeab4095856bb0e1dbe92 and replaced by `-DTJPEG_LIBRARY` and `-DTJPEG_INCLUDE_DIR`, but turbovnc detects libjpeg-turbo correctly automatically, with output: -- Performing Test TURBOJPEG_WORKS -- Performing Test TURBOJPEG_WORKS - Failed -- Could not link with official TurboJPEG library /var/empty/libjpeg-turbo/lib64/libturbojpeg.a. Checking whether the operating system supplies it ... -- Performing Test SYSTEM_TURBOJPEG_WORKS -- Performing Test SYSTEM_TURBOJPEG_WORKS - Success --- pkgs/tools/admin/turbovnc/default.nix | 36 +++++++++++++++++++-------- 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/admin/turbovnc/default.nix b/pkgs/tools/admin/turbovnc/default.nix index 6fa866e6bd11..331b71dc25d5 100644 --- a/pkgs/tools/admin/turbovnc/default.nix +++ b/pkgs/tools/admin/turbovnc/default.nix @@ -27,20 +27,24 @@ xkeyboard_config, xorg, xterm, - zlib, }: stdenv.mkDerivation (finalAttrs: { pname = "turbovnc"; - version = "3.1.4"; + version = "3.2"; src = fetchFromGitHub { owner = "TurboVNC"; repo = "turbovnc"; rev = finalAttrs.version; - hash = "sha256-Qt9yGyGWKFBppO91D+hUfmN7CMg0I66rAXyRoCYUOEA="; + hash = "sha256-CMJdUG4Dd7pbtr/KXq0hV+zR5i+L/y610O+SWJTR/zQ="; }; + # Notes: + # * SSH support does not require `openssh` on PATH, because turbovnc + # uses a built-in SSH client ("JSch fork"), as commented on e.g.: + # https://github.com/TurboVNC/turbovnc/releases/tag/3.2beta1 + # # TODO: # * Build outputs that are unclear: # * `-- FONT_ENCODINGS_DIRECTORY = /var/empty/share/X11/fonts/encodings` @@ -48,7 +52,6 @@ stdenv.mkDerivation (finalAttrs: { # do with their `fontDirectories`? # * `XORG_REGISTRY_PATH = /var/empty/lib64/xorg` # * The thing about xorg `protocol.txt` - # * Does SSH support require `openssh` on PATH? # * Add `enableClient ? true` flag that disables the client GUI # so that the server can be built without openjdk dependency. # * Perhaps allow to build the client on non-Linux platforms. @@ -72,7 +75,6 @@ stdenv.mkDerivation (finalAttrs: { openssl pam perl - zlib ] ++ (with xorg; [ libfontenc # for -DTVNC_SYSTEMX11=1 @@ -83,6 +85,7 @@ stdenv.mkDerivation (finalAttrs: { libXext libXfont2 # for -DTVNC_SYSTEMX11=1 libxkbfile # for -DTVNC_SYSTEMX11=1 + libxshmfence libXi mesa-gl-headers # for -DTVNC_SYSTEMX11=1 pixman # for -DTVNC_SYSTEMX11=1 @@ -103,14 +106,27 @@ stdenv.mkDerivation (finalAttrs: { # -dridir /nix/store/...-mesa-20.1.10-drivers/lib/dri/ "-DXORG_DRI_DRIVER_PATH=${libGL.driverLink}/lib/dri" # The build system doesn't find these files automatically. - "-DTJPEG_JAR=${libjpeg_turbo.out}/share/java/turbojpeg.jar" - "-DTJPEG_JNILIBRARY=${libjpeg_turbo.out}/lib/libturbojpeg.so" "-DXKB_BASE_DIRECTORY=${xkeyboard_config}/share/X11/xkb" "-DXKB_BIN_DIRECTORY=${xkbcomp}/bin" # use system libs - "-DTVNC_SYSTEMLIBS=1" - "-DTVNC_SYSTEMX11=1" - "-DTVNC_DLOPENSSL=0" + # TurboVNC >= 3.1.4 no longer needs overrides to use system libraries + # instead of bundling them, see + # https://github.com/TurboVNC/turbovnc/releases/tag/3.2beta1: + # > The TVNC_SYSTEMLIBS and TVNC_SYSTEMX11 CMake variables have been removed, + # > and the build system now behaves as if those variables are always on. + # > A new CMake variable (TVNC_ZLIBNG) can be used on x86 platforms + # > to disable the in-tree SIMD-accelerated zlib-ng implementation + # > and build against the system-supplied zlib implementation. + # + # We'd like to build against nixpkgs's `zlib-ng`, but if we pass + # `-DTVNC_ZLIBNG=0`, the above logic seems to imply that it looks + # for normal zlib as well, and the `./configure` output prints + # -- zlib-ng disabled (TVNC_ZLIBNG = 0) + # -- Found ZLIB: /nix/store/srby6wmvg7dp454pwb6qvaxdiri38sc1-zlib-1.3.1/lib/libz.so (found version "1.3.1") + # so that seems to use normal `zlib`, even though it's not declared + # as a dependency here (probably it's part of `stdenv`). + # So for now, we use TruboVNC's in-tree `zlib-ng`. + # "-DTVNC_ZLIBNG=0" # not given currently as explained above ]; postInstall = '' From 04916be0e3be67b6dc5a5c98bb2bd9a0fd6e93a8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 02:56:13 +0000 Subject: [PATCH 082/168] git-town: 20.1.0 -> 20.2.0 --- pkgs/by-name/gi/git-town/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gi/git-town/package.nix b/pkgs/by-name/gi/git-town/package.nix index 8456432c6c71..471f2c3d0ff1 100644 --- a/pkgs/by-name/gi/git-town/package.nix +++ b/pkgs/by-name/gi/git-town/package.nix @@ -13,13 +13,13 @@ buildGoModule rec { pname = "git-town"; - version = "20.1.0"; + version = "20.2.0"; src = fetchFromGitHub { owner = "git-town"; repo = "git-town"; tag = "v${version}"; - hash = "sha256-RoSLRGi//vk/jp/6rxI//cKdeoNL8nI73ZdeRKDesfs="; + hash = "sha256-q1wiqE2pd1qLw0nTw3CEpJybGia+KwRacgejofk4kJ8="; }; vendorHash = null; From 6abf7f3f4f4709adfb2148910bf65ec183193567 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 03:27:10 +0000 Subject: [PATCH 083/168] python3Packages.pyaprilaire: 0.8.1 -> 0.9.0 --- pkgs/development/python-modules/pyaprilaire/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyaprilaire/default.nix b/pkgs/development/python-modules/pyaprilaire/default.nix index 372ac5d2903c..9d49fa80be26 100644 --- a/pkgs/development/python-modules/pyaprilaire/default.nix +++ b/pkgs/development/python-modules/pyaprilaire/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "pyaprilaire"; - version = "0.8.1"; + version = "0.9.0"; pyproject = true; src = fetchFromGitHub { owner = "chamberlain2007"; repo = "pyaprilaire"; tag = version; - hash = "sha256-wkeaGd76OoXF18lP+N9a2hu7KjPPg88V0S2yEQoft5g="; + hash = "sha256-o14G0sUEvNbhKtwdrCDS0rmNokEMaa+756Ac6pSKiiU="; }; build-system = [ setuptools ]; @@ -32,7 +32,7 @@ buildPythonPackage rec { ]; meta = { - changelog = "https://github.com/chamberlain2007/pyaprilaire/releases/tag/${version}"; + changelog = "https://github.com/chamberlain2007/pyaprilaire/releases/tag/${src.tag}"; description = "Python library for interacting with Aprilaire thermostats"; homepage = "https://github.com/chamberlain2007/pyaprilaire"; license = lib.licenses.mit; From a99f4d153851dffb18fa920a937e6b6d70863e98 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 03:48:04 +0000 Subject: [PATCH 084/168] python3Packages.resend: 2.9.0 -> 2.10.0 --- pkgs/development/python-modules/resend/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/resend/default.nix b/pkgs/development/python-modules/resend/default.nix index 74a2c20679b5..30028c1921fe 100644 --- a/pkgs/development/python-modules/resend/default.nix +++ b/pkgs/development/python-modules/resend/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "resend"; - version = "2.9.0"; + version = "2.10.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "resend"; repo = "resend-python"; tag = "v${version}"; - hash = "sha256-rMa644hA9dBaew2BFHg2i7MtrjsfW9xzk7fsiKPoYaI="; + hash = "sha256-K/Wk1TZWurhSm3fIAijO+L1ao4pURnlthwxdkI6yZWM="; }; build-system = [ setuptools ]; From 063044745c0c8506b56d864632f96f92e2012834 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 03:51:52 +0000 Subject: [PATCH 085/168] sladeUnstable: 3.2.7-unstable-2025-04-22 -> 3.2.7-unstable-2025-05-09 --- pkgs/games/doom-ports/slade/git.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/doom-ports/slade/git.nix b/pkgs/games/doom-ports/slade/git.nix index 35e3a977ff57..941ec75df7b2 100644 --- a/pkgs/games/doom-ports/slade/git.nix +++ b/pkgs/games/doom-ports/slade/git.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation { pname = "slade"; - version = "3.2.7-unstable-2025-04-22"; + version = "3.2.7-unstable-2025-05-09"; src = fetchFromGitHub { owner = "sirjuddington"; repo = "SLADE"; - rev = "f8584231353845148c7623990dd90291fcb70f33"; - hash = "sha256-tP84FfSjfOxFh8S7GuyHB0M13Svx6SLbloo8xt9oORU="; + rev = "a515292e74f92f6a54f29feb96cc198aa1981f1b"; + hash = "sha256-4H4L9PXhBmoDl1ZorlMPp7zSSX7G94VIcyjdX7zYauk="; }; nativeBuildInputs = [ From 94f2eb1cfd241fac76e2241753c0e6e70eb3a576 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 04:21:24 +0000 Subject: [PATCH 086/168] v2ray: 5.31.0 -> 5.32.0 --- pkgs/by-name/v2/v2ray/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/v2/v2ray/package.nix b/pkgs/by-name/v2/v2ray/package.nix index 6b1f0d5ff578..52c5880c5097 100644 --- a/pkgs/by-name/v2/v2ray/package.nix +++ b/pkgs/by-name/v2/v2ray/package.nix @@ -16,18 +16,18 @@ buildGoModule rec { pname = "v2ray-core"; - version = "5.31.0"; + version = "5.32.0"; src = fetchFromGitHub { owner = "v2fly"; repo = "v2ray-core"; rev = "v${version}"; - hash = "sha256-neX3r4Lc1f8N/nSOzc62CArXjQrDRnLaTZPOzf66OCw="; + hash = "sha256-8EnJZvcioNJbNHQYbnYEVZnpxNIb8ObhmkqYmisdYIc="; }; # `nix-update` doesn't support `vendorHash` yet. # https://github.com/Mic92/nix-update/pull/95 - vendorHash = "sha256-hYWGtp52XEvG4K5eplqsbRS0EweEydVfpA6hypB6SVA="; + vendorHash = "sha256-wENi5VgY/pzYlw0CcWAKHAI2M6qfxf2XFAnAJU63YXk="; ldflags = [ "-s" From ce954b1f1e132a64cd4f166930cdf055e0dacc74 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 04:39:26 +0000 Subject: [PATCH 087/168] python3Packages.llm-gemini: 0.19.1 -> 0.20 --- pkgs/development/python-modules/llm-gemini/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/llm-gemini/default.nix b/pkgs/development/python-modules/llm-gemini/default.nix index 1ca6ec49a151..0d0c33a4c446 100644 --- a/pkgs/development/python-modules/llm-gemini/default.nix +++ b/pkgs/development/python-modules/llm-gemini/default.nix @@ -15,14 +15,14 @@ }: buildPythonPackage rec { pname = "llm-gemini"; - version = "0.19.1"; + version = "0.20"; pyproject = true; src = fetchFromGitHub { owner = "simonw"; repo = "llm-gemini"; tag = version; - hash = "sha256-znN+4hhQNDvDy6Wzad9TpR1m1i6tOPvWrCdCocaf8N8="; + hash = "sha256-haaJtJ9RqV5/n/j8PNXPS7zc332W+gU20x0wGPRdzOQ="; }; build-system = [ From 032b5c3eb733552266994a16f445f6e1148a4863 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 05:02:33 +0000 Subject: [PATCH 088/168] terraform-providers.minio: 3.5.0 -> 3.5.2 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index ce7f37fcf97e..eb985304ac65 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -822,11 +822,11 @@ "vendorHash": "sha256-MjRVd/JlmHppdFG7k3pgNVWbCaEZuh5E591x/P6cT5o=" }, "minio": { - "hash": "sha256-wB4Gq1UY1zfrTjZrqFB3RlJo3+PbHjMrBeMU/z197fg=", + "hash": "sha256-loUcdsr5zFoOXIu0CLYKvutIVLYG0+DsuwPCxAeVMF8=", "homepage": "https://registry.terraform.io/providers/aminueza/minio", "owner": "aminueza", "repo": "terraform-provider-minio", - "rev": "v3.5.0", + "rev": "v3.5.2", "spdx": "AGPL-3.0", "vendorHash": "sha256-7AU79r4OQbmrMI385KVIHon/4pWk6J9qnH+zQRrWtJI=" }, From cd1dd46072f841fe9aaa775ad574ee55baa9a8ab Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 05:38:49 +0000 Subject: [PATCH 089/168] ab-av1: 0.10.0 -> 0.10.1 --- pkgs/by-name/ab/ab-av1/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ab/ab-av1/package.nix b/pkgs/by-name/ab/ab-av1/package.nix index 21122c2bbeba..dc9c6ffb8a59 100644 --- a/pkgs/by-name/ab/ab-av1/package.nix +++ b/pkgs/by-name/ab/ab-av1/package.nix @@ -8,17 +8,17 @@ rustPlatform.buildRustPackage rec { pname = "ab-av1"; - version = "0.10.0"; + version = "0.10.1"; src = fetchFromGitHub { owner = "alexheretic"; repo = "ab-av1"; rev = "v${version}"; - hash = "sha256-FqyY4HUOrpSsqR5XO96+IXnT7w8C1gGfia0YH1d/nkg="; + hash = "sha256-uW5BXUNzk94bqSWQSaCiuSO8Angwt0eo4ZmvGRr/4S8="; }; useFetchCargoVendor = true; - cargoHash = "sha256-nadMsYt1RaZbqArSEiz/kAz/HuTS0E3bsn94D9UmAME="; + cargoHash = "sha256-oLmE+xkatgIDIu6mUJ49O9s6ULp0bvpWdBP8rEGb5yc="; nativeBuildInputs = [ installShellFiles ]; From 03d1a02549a7246cf7c39d92ec1a329b4331b236 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 06:49:02 +0000 Subject: [PATCH 090/168] renode-dts2repl: 0-unstable-2025-05-08 -> 0-unstable-2025-05-20 --- pkgs/by-name/re/renode-dts2repl/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/re/renode-dts2repl/package.nix b/pkgs/by-name/re/renode-dts2repl/package.nix index 8c9f79f49900..471402426394 100644 --- a/pkgs/by-name/re/renode-dts2repl/package.nix +++ b/pkgs/by-name/re/renode-dts2repl/package.nix @@ -7,14 +7,14 @@ python3.pkgs.buildPythonApplication { pname = "renode-dts2repl"; - version = "0-unstable-2025-05-08"; + version = "0-unstable-2025-05-20"; pyproject = true; src = fetchFromGitHub { owner = "antmicro"; repo = "dts2repl"; - rev = "5593a9f079e0ee89040cdf31b603878e5d8c147e"; - hash = "sha256-vLmEsU3zQ/1OMeW0kKS5nkRKlnBtEchjHJnnLb0Hlcw="; + rev = "be40a3764a727a7a22eebb481b1fd3e0f70fca8c"; + hash = "sha256-r+7J7AgWpBZuGpPU7EBn0KxM5ksHC6aED4oLe4oZzfQ="; }; nativeBuildInputs = [ From fb93f20ddad5a28a0bc4a7f6b15effdab423e866 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 07:44:17 +0000 Subject: [PATCH 091/168] terraform-providers.tencentcloud: 1.81.191 -> 1.81.194 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index ce7f37fcf97e..854306e5cdb4 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1309,11 +1309,11 @@ "vendorHash": "sha256-HBdvXWZNPPAqPEKodwG0ZeiJOhfJHe9HRCcuozKpwVs=" }, "tencentcloud": { - "hash": "sha256-enP2ZWUB+c414BXl9uvXateCMEFlCY6MDVayWRgTbe4=", + "hash": "sha256-CHYuiAgzFIAApK8wZ75DtgVf8sAEVwrXP7l/l+VxB1o=", "homepage": "https://registry.terraform.io/providers/tencentcloudstack/tencentcloud", "owner": "tencentcloudstack", "repo": "terraform-provider-tencentcloud", - "rev": "v1.81.191", + "rev": "v1.81.194", "spdx": "MPL-2.0", "vendorHash": null }, From 841c99b5e91af6da0fb5debc1ba4f78e1d9c168d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 07:44:46 +0000 Subject: [PATCH 092/168] terraform-providers.turbot: 1.12.1 -> 1.12.2 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index ce7f37fcf97e..a41ebb1ed4a3 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1364,11 +1364,11 @@ "vendorHash": "sha256-UuLHaOEG6jmOAgfdNOtLyUimlAr3g6K8n3Ehu64sKqk=" }, "turbot": { - "hash": "sha256-vprEb9cddA3bgtauh9X7F6cNBWRr+lMvRTYHg2FLFN4=", + "hash": "sha256-YjB4pNyApGDppsozRrwhze3nWmmn1uWez3WiRPyLa4A=", "homepage": "https://registry.terraform.io/providers/turbot/turbot", "owner": "turbot", "repo": "terraform-provider-turbot", - "rev": "v1.12.1", + "rev": "v1.12.2", "spdx": "MPL-2.0", "vendorHash": null }, From 40f0234aeca6798639e534c2a8c68c7399165c8b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 07:55:49 +0000 Subject: [PATCH 093/168] python3Packages.gocardless-pro: 2.7.0 -> 3.0.0 --- pkgs/development/python-modules/gocardless-pro/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/gocardless-pro/default.nix b/pkgs/development/python-modules/gocardless-pro/default.nix index a2513c3e8424..ff29018beaac 100644 --- a/pkgs/development/python-modules/gocardless-pro/default.nix +++ b/pkgs/development/python-modules/gocardless-pro/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "gocardless-pro"; - version = "2.7.0"; + version = "3.0.0"; pyproject = true; src = fetchFromGitHub { owner = "gocardless"; repo = "gocardless-pro-python"; tag = "v${version}"; - hash = "sha256-QWiRZ14Y24WDZ6+ljdyQhCaPgYrC6nSyQwr2tIGTTfw="; + hash = "sha256-Bqqr3j9UJrwqxDdTEQMbWfkznHufnv1gk1Wd0SSF78M="; }; build-system = [ setuptools ]; From dfb9eab2de7c26ceb4b7ef1a0a1f6c5cb17f5c70 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 08:14:46 +0000 Subject: [PATCH 094/168] python3Packages.pyreadstat: 1.2.8 -> 1.2.9 --- pkgs/development/python-modules/pyreadstat/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyreadstat/default.nix b/pkgs/development/python-modules/pyreadstat/default.nix index fcf1d720c49a..b322efc89890 100644 --- a/pkgs/development/python-modules/pyreadstat/default.nix +++ b/pkgs/development/python-modules/pyreadstat/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "pyreadstat"; - version = "1.2.8"; + version = "1.2.9"; pyproject = true; disabled = pythonOlder "3.7"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "Roche"; repo = "pyreadstat"; tag = "v${version}"; - hash = "sha256-9uDmkEp9CXUCcM09CaVaaG856Q1rY3sKYOkQkGRzakE="; + hash = "sha256-4SdA4yYf3ha42ktyObTa2eOG16sq5tq+7Iyi16V00bw="; }; build-system = [ @@ -56,7 +56,7 @@ buildPythonPackage rec { meta = with lib; { description = "Module to read SAS, SPSS and Stata files into pandas data frames"; homepage = "https://github.com/Roche/pyreadstat"; - changelog = "https://github.com/Roche/pyreadstat/blob/v${version}/change_log.md"; + changelog = "https://github.com/Roche/pyreadstat/blob/${src.tag}/change_log.md"; license = licenses.asl20; maintainers = with maintainers; [ swflint ]; }; From 8d14503ba2faab3046122a7067f25dadc9be1eb8 Mon Sep 17 00:00:00 2001 From: Casey Link Date: Fri, 23 May 2025 10:18:06 +0200 Subject: [PATCH 095/168] claude-code: 1.0.0 -> 1.0.2 --- pkgs/by-name/cl/claude-code/package-lock.json | 8 ++++---- pkgs/by-name/cl/claude-code/package.nix | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/cl/claude-code/package-lock.json b/pkgs/by-name/cl/claude-code/package-lock.json index 8bf9d38634eb..320bb49a8443 100644 --- a/pkgs/by-name/cl/claude-code/package-lock.json +++ b/pkgs/by-name/cl/claude-code/package-lock.json @@ -5,13 +5,13 @@ "packages": { "": { "dependencies": { - "@anthropic-ai/claude-code": "^1.0.0" + "@anthropic-ai/claude-code": "^1.0.2" } }, "node_modules/@anthropic-ai/claude-code": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.0.tgz", - "integrity": "sha512-5+FV9oNtV3sZ8rq1pw3B6KX24Ib+qs9FoLR1ghxOAzk4ZXKzCSSHhW4GOWJy+6N9926KHN2wFNVcuZC9NW75Xg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.2.tgz", + "integrity": "sha512-6p7RMXEcVfymsJ7v0GyMfA3gcD2AbFVSb9b1Py4tbxM2ensjyaSx3wVQW2QiFk+9mhoRkYc0ETVnJ1x/G0LW7g==", "hasInstallScript": true, "license": "SEE LICENSE IN README.md", "bin": { diff --git a/pkgs/by-name/cl/claude-code/package.nix b/pkgs/by-name/cl/claude-code/package.nix index 2d651b9e6702..53519341a4c2 100644 --- a/pkgs/by-name/cl/claude-code/package.nix +++ b/pkgs/by-name/cl/claude-code/package.nix @@ -7,16 +7,16 @@ buildNpmPackage rec { pname = "claude-code"; - version = "1.0.0"; + version = "1.0.2"; nodejs = nodejs_20; # required for sandboxed Nix builds on Darwin src = fetchzip { url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${version}.tgz"; - hash = "sha256-DwZJDl+Yt6ULpumSnwktWCJZPxFgdsDkRHAt+6C/BcM="; + hash = "sha256-mQv2o9uaOZiZSdkNmLiqJs66fe9fiHfEmrXQZwmME34="; }; - npmDepsHash = "sha256-taZ6yFGWj6oSa0llhByX49qfID9grzNpBt9dQhLl1vo="; + npmDepsHash = "sha256-Diii1tBBzYlB4svlphtu1VAOoijoq9WudxtJFSXXbbE="; postPatch = '' cp ${./package-lock.json} package-lock.json From 84545b3886c92d95863b2bd8bd38997507c03529 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 11:00:18 +0200 Subject: [PATCH 096/168] python312Packages.mypy-boto3-amp: 1.38.0 -> 1.38.22 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index a023f3fe55f7..c7c4a695d03b 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -62,8 +62,8 @@ rec { "sha256-zp0Z4N8MRsKjQn7UaGC+MPkBT1mTP0wbJ0a5+p6A3/s="; mypy-boto3-amp = - buildMypyBoto3Package "amp" "1.38.0" - "sha256-nvTTdi/Mwtl8TE/CGonuuuFFd8b1tEPltEmO71KD5Cg="; + buildMypyBoto3Package "amp" "1.38.22" + "sha256-NoNqTKRj7/wlqoBwsEW/wgj1cBAHYRXgLVfZvkP5EV0="; mypy-boto3-amplify = buildMypyBoto3Package "amplify" "1.38.0" From 5bcd18332760789a2c36cf29f6f266728f83b2f3 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 11:00:21 +0200 Subject: [PATCH 097/168] python312Packages.mypy-boto3-application-autoscaling: 1.38.0 -> 1.38.21 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index c7c4a695d03b..0258f5293913 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -110,8 +110,8 @@ rec { "sha256-5AFYyCJk6eHKDaqBSl8Po/jj6Fkwr5JYgMtxGrdWGRQ="; mypy-boto3-application-autoscaling = - buildMypyBoto3Package "application-autoscaling" "1.38.0" - "sha256-lN2dqLobOiGThkSnm3W+2HRJfBYJNe9GyaI8sYA4cRk="; + buildMypyBoto3Package "application-autoscaling" "1.38.21" + "sha256-UKN0UDZcBvmZ/9nSpcy4IOxIkL1PvOmC2w5bZpvk+L0="; mypy-boto3-application-insights = buildMypyBoto3Package "application-insights" "1.38.0" From 68eb445f9500da323ec986f2b8df644fb129ac71 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 11:00:24 +0200 Subject: [PATCH 098/168] python312Packages.mypy-boto3-auditmanager: 1.38.0 -> 1.38.22 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 0258f5293913..8a87df1e2dbc 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -146,8 +146,8 @@ rec { "sha256-1Fonc55fVM8ksqCTBwXVHeqhypgsYegoW8PEEPqcTF4="; mypy-boto3-auditmanager = - buildMypyBoto3Package "auditmanager" "1.38.0" - "sha256-qJY3OmSAYR4/YEnayDfoSWElMQ0EKT++/JO+nBqf4A4="; + buildMypyBoto3Package "auditmanager" "1.38.22" + "sha256-6OgMopfNAD7bpLnDFXlcejFqKYTOvrJOd/X39SHYa1A="; mypy-boto3-autoscaling = buildMypyBoto3Package "autoscaling" "1.38.0" From 0999b65c207bdb3fada9045fd598552813ffc365 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 11:00:32 +0200 Subject: [PATCH 099/168] python312Packages.mypy-boto3-cloudwatch: 1.38.0 -> 1.38.21 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 8a87df1e2dbc..38dd0263a57e 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -258,8 +258,8 @@ rec { "sha256-fAf1+/UqJJ3Ya88/HHoeRd/KalfOTFJKjk2xypF3Dko="; mypy-boto3-cloudwatch = - buildMypyBoto3Package "cloudwatch" "1.38.0" - "sha256-uzSSr2bpTrIDItc7eTBQ6lTxdCEYsY4255jk2v47Fn4="; + buildMypyBoto3Package "cloudwatch" "1.38.21" + "sha256-2fJzoFoENNelKUzoHz1F30azqv7DrujQsGWoIWopAHY="; mypy-boto3-codeartifact = buildMypyBoto3Package "codeartifact" "1.38.0" From e245ae06d4fa09beec8540708d4cbe68ef76033b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 11:00:48 +0200 Subject: [PATCH 100/168] python312Packages.mypy-boto3-ec2: 1.38.20 -> 1.38.21 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 38dd0263a57e..8aadcfd3bc6e 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -446,8 +446,8 @@ rec { "sha256-RQh46jrXqj4bXTRJ+tPR9sql7yUn7Ek9u4p0OU0A7b0="; mypy-boto3-ec2 = - buildMypyBoto3Package "ec2" "1.38.20" - "sha256-8OsQwmsPFIkDkFJdNiE8YF4OXtHOsrnzPtOeKQRM5+g="; + buildMypyBoto3Package "ec2" "1.38.21" + "sha256-k8rn7BTpH0TPfzSzcqV+OaIqnZc6vLKeGpI/OaxzhkY="; mypy-boto3-ec2-instance-connect = buildMypyBoto3Package "ec2-instance-connect" "1.38.0" From 6c8ef8657fd87805f88fa9e101655627d6546bf5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 11:00:57 +0200 Subject: [PATCH 101/168] python312Packages.mypy-boto3-glue: 1.38.20 -> 1.38.22 --- pkgs/development/python-modules/mypy-boto3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index 8aadcfd3bc6e..2c855f443ef5 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -574,8 +574,8 @@ rec { "sha256-abALPaOoxM8dvwqd8j41mTT1Zmcn/sEVzlopSMc+fYM="; mypy-boto3-glue = - buildMypyBoto3Package "glue" "1.38.20" - "sha256-4N+T4SvRqraR3juc+0jfbhmGrfCUALfpbrL8kmzygTw="; + buildMypyBoto3Package "glue" "1.38.22" + "sha256-qcUp+vqqmEXTnDIEs/tsu7Yz+nR/r2oISisqOB7xKis="; mypy-boto3-grafana = buildMypyBoto3Package "grafana" "1.38.0" From 351637ec28ab8f93bdcd8736b7b27a3df7c1f2b6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 11:02:16 +0200 Subject: [PATCH 102/168] python313Packages.boto3-stubs: 1.38.20 -> 1.38.22 --- pkgs/development/python-modules/boto3-stubs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/boto3-stubs/default.nix b/pkgs/development/python-modules/boto3-stubs/default.nix index 76abfdc488dd..1ce296b75511 100644 --- a/pkgs/development/python-modules/boto3-stubs/default.nix +++ b/pkgs/development/python-modules/boto3-stubs/default.nix @@ -359,7 +359,7 @@ buildPythonPackage rec { pname = "boto3-stubs"; - version = "1.38.20"; + version = "1.38.22"; pyproject = true; disabled = pythonOlder "3.7"; @@ -367,7 +367,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "boto3_stubs"; inherit version; - hash = "sha256-fx17//c1XrTRfnmE+/J/RHCc2EhKu1S9a6NOxzpVJgU="; + hash = "sha256-9D7LqBTSxknbOiJFHoM2NQUMwkCVSrNAa9hPUgZ2V6w="; }; build-system = [ setuptools ]; From 6abf5db6033690c5ca61fc6274617fe079e0447b Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 15 May 2025 13:18:19 +0200 Subject: [PATCH 103/168] python312Packages.tinygrad: 0.10.2 -> 0.10.3 Diff: https://github.com/tinygrad/tinygrad/compare/refs/tags/v0.10.2...refs/tags/v0.10.3 Changelog: https://github.com/tinygrad/tinygrad/releases/tag/v0.10.3 --- pkgs/development/python-modules/tinygrad/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tinygrad/default.nix b/pkgs/development/python-modules/tinygrad/default.nix index 5619e20d518d..cf4e0c43162a 100644 --- a/pkgs/development/python-modules/tinygrad/default.nix +++ b/pkgs/development/python-modules/tinygrad/default.nix @@ -32,6 +32,7 @@ hypothesis, jax, librosa, + ml-dtypes, networkx, numpy, onnx, @@ -44,6 +45,7 @@ torch, tqdm, transformers, + z3-solver, # passthru tinygrad, @@ -54,14 +56,14 @@ buildPythonPackage rec { pname = "tinygrad"; - version = "0.10.2"; + version = "0.10.3"; pyproject = true; src = fetchFromGitHub { owner = "tinygrad"; repo = "tinygrad"; tag = "v${version}"; - hash = "sha256-BXQMacp6QjlgsVwhp2pxEZkRylZfKQhqIh92/0dPlfg="; + hash = "sha256-IQ0EAjj8kYUwzvMsAiNnvRm/twC40r9JWXUocaETjC8="; }; patches = [ @@ -150,6 +152,7 @@ buildPythonPackage rec { hypothesis jax librosa + ml-dtypes networkx numpy onnx @@ -162,6 +165,7 @@ buildPythonPackage rec { torch tqdm transformers + z3-solver ] ++ networkx.optional-dependencies.extra; disabledTests = From e5c5583abbdcbd3e7d7e12c9784b3bb81dff9640 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 09:40:32 +0000 Subject: [PATCH 104/168] conduktor-ctl: 0.5.0 -> 0.5.1 --- pkgs/by-name/co/conduktor-ctl/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/co/conduktor-ctl/package.nix b/pkgs/by-name/co/conduktor-ctl/package.nix index b9762a293a56..a4b8b2f209fe 100644 --- a/pkgs/by-name/co/conduktor-ctl/package.nix +++ b/pkgs/by-name/co/conduktor-ctl/package.nix @@ -8,13 +8,13 @@ }: buildGoModule rec { pname = "conduktor-ctl"; - version = "0.5.0"; + version = "0.5.1"; src = fetchFromGitHub { owner = "conduktor"; repo = "ctl"; rev = "refs/tags/v${version}"; - hash = "sha256-8FsYkwYAXmfLKdFmg6t8DSQkx+/EpGxKX7l+k+ey8MA="; + hash = "sha256-u2WnFpVEN5tvVFyzPlIH68eUYVutJl2oTJKOwyxm18M="; }; vendorHash = "sha256-kPCBzLU6aH6MNlKZcKKFcli99ZmdOtPV5+5gxPs5GH4="; From 023c56f5727c191899e30466a610fc0f1582c083 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 09:57:08 +0000 Subject: [PATCH 105/168] mise: 2025.5.3 -> 2025.5.10 --- pkgs/by-name/mi/mise/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/mi/mise/package.nix b/pkgs/by-name/mi/mise/package.nix index 9eaed863a826..1ea85e434832 100644 --- a/pkgs/by-name/mi/mise/package.nix +++ b/pkgs/by-name/mi/mise/package.nix @@ -21,17 +21,17 @@ rustPlatform.buildRustPackage rec { pname = "mise"; - version = "2025.5.3"; + version = "2025.5.10"; src = fetchFromGitHub { owner = "jdx"; repo = "mise"; rev = "v${version}"; - hash = "sha256-BNGjkWBw2RKHmZH5HYy7AGALaVLStXK91ilw9K8iO0U="; + hash = "sha256-G6bvWSjFhZRVkIZKUG+v7Ct1AtiLCQYmu5WLsVxfVgA="; }; useFetchCargoVendor = true; - cargoHash = "sha256-1bbj66+h9gnXqpf55cprqzZ5Ld44dsfET3FldututR4="; + cargoHash = "sha256-OVXcmlIrb+Q7B/FAayfrC/e4WdnWUgvjLn6hPDo8Ru4="; nativeBuildInputs = [ installShellFiles From efe9d0e796db7e7a9f8026f74546e4b62b380a8c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 12:00:56 +0200 Subject: [PATCH 106/168] python313Packages.tencentcloud-sdk-python: 3.0.1384 -> 3.0.1385 Diff: https://github.com/TencentCloud/tencentcloud-sdk-python/compare/refs/tags/3.0.1384...refs/tags/3.0.1385 Changelog: https://github.com/TencentCloud/tencentcloud-sdk-python/blob/3.0.1385/CHANGELOG.md --- .../python-modules/tencentcloud-sdk-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix index 1a37b3a31292..d5f20141cc90 100644 --- a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix +++ b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "tencentcloud-sdk-python"; - version = "3.0.1384"; + version = "3.0.1385"; pyproject = true; disabled = pythonOlder "3.9"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "TencentCloud"; repo = "tencentcloud-sdk-python"; tag = version; - hash = "sha256-EzQWxfUQy/1a3TU449cClcj2WHwDqfEVG5qpGwYI+f8="; + hash = "sha256-Ab9XavQBT12Mz3Ute2tSYHkcRkYVgZa7d0RywkILD3A="; }; build-system = [ setuptools ]; From 2a2425e71827d2d483e9c979cb97c98489927bb5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 12:04:38 +0200 Subject: [PATCH 107/168] exploitdb: 2025-05-19 -> 2025-05-22 Diff: https://gitlab.com/exploit-database/exploitdb/-/compare/refs/tags/2025-05-19...2025-05-22 --- pkgs/by-name/ex/exploitdb/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ex/exploitdb/package.nix b/pkgs/by-name/ex/exploitdb/package.nix index aaf64e7aeb61..4aec5276f880 100644 --- a/pkgs/by-name/ex/exploitdb/package.nix +++ b/pkgs/by-name/ex/exploitdb/package.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "exploitdb"; - version = "2025-05-19"; + version = "2025-05-22"; src = fetchFromGitLab { owner = "exploit-database"; repo = "exploitdb"; rev = "refs/tags/${version}"; - hash = "sha256-Tk2iPWiybUlsmiHbjJTNEMkCuXVeam49PiWrl4mVzhY="; + hash = "sha256-2dnIchOJJrqqePgOxb7tWw0j1neTlXFyxT30qwTOkrc="; }; nativeBuildInputs = [ makeWrapper ]; From 6804651ee728c1bb04ab4912e023cac169ef035e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 12:07:16 +0200 Subject: [PATCH 108/168] prowler: 5.6.0 -> 5.7.1 Changelog: https://github.com/prowler-cloud/prowler/releases/tag/5.7.1 --- pkgs/by-name/pr/prowler/package.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pr/prowler/package.nix b/pkgs/by-name/pr/prowler/package.nix index fd3e9f85a90b..ec6e267110ac 100644 --- a/pkgs/by-name/pr/prowler/package.nix +++ b/pkgs/by-name/pr/prowler/package.nix @@ -21,14 +21,14 @@ let in py.pkgs.buildPythonApplication rec { pname = "prowler"; - version = "5.6.0"; + version = "5.7.1"; pyproject = true; src = fetchFromGitHub { owner = "prowler-cloud"; repo = "prowler"; tag = version; - hash = "sha256-+AZEeWvkG8abC44WmVjDzZ9BT+MrLp5+iLDOMmN0aN4="; + hash = "sha256-gs/upAQLdMfmoWQrl1wS1wo/8gpmkuRv/tuWhviqSMU="; }; pythonRelaxDeps = true; @@ -75,6 +75,7 @@ py.pkgs.buildPythonApplication rec { pandas py-ocsf-models pydantic_1 + pygithub python-dateutil pytz schema From 07633117b6a27043ec57d2c11680023e91ec7c24 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 12:09:09 +0200 Subject: [PATCH 109/168] python313Packages.dash: 3.0.3 -> 3.0.4 Diff: https://github.com/plotly/dash/compare/refs/tags/v3.0.3...refs/tags/v3.0.4 Changelog: https://github.com/plotly/dash/blob/v3.0.4/CHANGELOG.md --- pkgs/development/python-modules/dash/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dash/default.nix b/pkgs/development/python-modules/dash/default.nix index 2d9d49ea76af..3f185c962a25 100644 --- a/pkgs/development/python-modules/dash/default.nix +++ b/pkgs/development/python-modules/dash/default.nix @@ -36,14 +36,14 @@ buildPythonPackage rec { pname = "dash"; - version = "3.0.3"; + version = "3.0.4"; pyproject = true; src = fetchFromGitHub { owner = "plotly"; repo = "dash"; tag = "v${version}"; - hash = "sha256-EMIzvn2V04AUNNKQ9FFnsW61zkSS1PrqTF5T5LIifAc="; + hash = "sha256-KCGVdD1L+U2KbktU2GU19BQ6wRcmEeYtC/v8UrFTyto="; }; nativeBuildInputs = [ From 96782b80183a0a6fb5c264e4368293cbc390863b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 12:09:22 +0200 Subject: [PATCH 110/168] python313Packages.dash-bootstrap-components: 2.0.2 -> 2.0.3 Changelog: https://github.com/facultyai/dash-bootstrap-components/releases/tag/2.0.3 --- .../python-modules/dash-bootstrap-components/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dash-bootstrap-components/default.nix b/pkgs/development/python-modules/dash-bootstrap-components/default.nix index e74224bc346a..86f50d6d3480 100644 --- a/pkgs/development/python-modules/dash-bootstrap-components/default.nix +++ b/pkgs/development/python-modules/dash-bootstrap-components/default.nix @@ -8,13 +8,13 @@ buildPythonPackage rec { pname = "dash-bootstrap-components"; - version = "2.0.2"; + version = "2.0.3"; pyproject = true; src = fetchPypi { inherit version; pname = "dash_bootstrap_components"; - hash = "sha256-81IY8OXisVkSHz4BDmGzImsKZ4svWC0L0gfULSkTLMA="; + hash = "sha256-XBYbBKbn7Rmn1U5C8HDCn9bDhdWneX56gpmaovwVsd4="; }; build-system = [ hatchling ]; From a8c138d53bb3ac7c750c50493e19959b784a180d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 12:17:07 +0200 Subject: [PATCH 111/168] python313Packages.asdf-standard: 1.1.1 -> 1.2.0 --- pkgs/development/python-modules/asdf-standard/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/asdf-standard/default.nix b/pkgs/development/python-modules/asdf-standard/default.nix index 15c8191a8465..a5eef1142cd4 100644 --- a/pkgs/development/python-modules/asdf-standard/default.nix +++ b/pkgs/development/python-modules/asdf-standard/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "asdf-standard"; - version = "1.1.1"; + version = "1.2.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -17,7 +17,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "asdf_standard"; inherit version; - hash = "sha256-AVNbwrFb/AnsimLUmZ+c8y3EnccWYMhCVkAij9h3YQI="; + hash = "sha256-5wmRL68L4vWEOiOvJzHm927WwnmynfWYnhUgmS+jxc8="; }; nativeBuildInputs = [ setuptools-scm ]; From c0ef30b9baa6f1f02c08756ddb02704f71b8b7f5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 12:18:02 +0200 Subject: [PATCH 112/168] python313Packages.environs: 14.1.1 -> 14.2.0 Diff: https://github.com/sloria/environs/compare/refs/tags/14.1.1...refs/tags/14.2.0 Changelog: https://github.com/sloria/environs/blob/14.2.0/CHANGELOG.md --- pkgs/development/python-modules/environs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/environs/default.nix b/pkgs/development/python-modules/environs/default.nix index c6fb398f69d4..144d2f68be5d 100644 --- a/pkgs/development/python-modules/environs/default.nix +++ b/pkgs/development/python-modules/environs/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "environs"; - version = "14.1.1"; + version = "14.2.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "sloria"; repo = "environs"; tag = version; - hash = "sha256-yWGLCUMnmk+d6o4OmBxuSTdImse8ikNs0rDXLZgFU6k="; + hash = "sha256-2JmoLhKqvX927e64qMIv+YAK7WJR+O/8nKvgaT9AQm8="; }; nativeBuildInputs = [ flit-core ]; From bec8deed38bcb28128c21866c2090d41a4beb2e9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 12:19:47 +0200 Subject: [PATCH 113/168] python313Packages.opower: 0.12.0 -> 0.12.1 Diff: https://github.com/tronikos/opower/compare/refs/tags/v0.12.0...refs/tags/v0.12.1 Changelog: https://github.com/tronikos/opower/releases/tag/v0.12.1 --- pkgs/development/python-modules/opower/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/opower/default.nix b/pkgs/development/python-modules/opower/default.nix index 10efb64b1346..00f656dfab46 100644 --- a/pkgs/development/python-modules/opower/default.nix +++ b/pkgs/development/python-modules/opower/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "opower"; - version = "0.12.0"; + version = "0.12.1"; pyproject = true; disabled = pythonOlder "3.9"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "tronikos"; repo = "opower"; tag = "v${version}"; - hash = "sha256-pkjVabTHehS0tToFF6KgD7SH89cdLEzUuVQUphZF1Y4="; + hash = "sha256-4Sbx7qvQFY/9yKXF4CiRqKh3CNTsHZrmS5BjJ80UaXM="; }; build-system = [ setuptools ]; From 03aacd23f951a14658869f9324e35705488da8b1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 12:20:17 +0200 Subject: [PATCH 114/168] python313Packages.pyfibaro: 0.8.2 -> 0.8.3 Diff: https://github.com/rappenze/pyfibaro/compare/refs/tags/0.8.2...refs/tags/0.8.3 Changelog: https://github.com/rappenze/pyfibaro/releases/tag/0.8.3 --- pkgs/development/python-modules/pyfibaro/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyfibaro/default.nix b/pkgs/development/python-modules/pyfibaro/default.nix index 159e2500c8ae..fb83863dccdf 100644 --- a/pkgs/development/python-modules/pyfibaro/default.nix +++ b/pkgs/development/python-modules/pyfibaro/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "pyfibaro"; - version = "0.8.2"; + version = "0.8.3"; pyproject = true; disabled = pythonOlder "3.9"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "rappenze"; repo = "pyfibaro"; tag = version; - hash = "sha256-0mWqjiKPyXlnXDG+SP/RrV3aergTG9cEFKe3Zczr8IE="; + hash = "sha256-KdlndW066TDxZpkIP0Oa3Lii0mBpwELfHtoGKiwh6GE="; }; build-system = [ setuptools ]; From 7abe13e6c845b0c89867157c7d015b124e628ed9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 12:22:42 +0200 Subject: [PATCH 115/168] python313Packages.types-html5lib: 1.1.11.20241018 -> 1.1.11.20250516 --- .../python-modules/types-html5lib/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/types-html5lib/default.nix b/pkgs/development/python-modules/types-html5lib/default.nix index e7916e63218c..869dd0f9ff63 100644 --- a/pkgs/development/python-modules/types-html5lib/default.nix +++ b/pkgs/development/python-modules/types-html5lib/default.nix @@ -7,12 +7,13 @@ buildPythonPackage rec { pname = "types-html5lib"; - version = "1.1.11.20241018"; + version = "1.1.11.20250516"; pyproject = true; src = fetchPypi { - inherit pname version; - hash = "sha256-mAQlVf942eOlHHfJGLEEGsu362xAVAjYqeFQ/1vsyvo="; + pname = "types_html5lib"; + inherit version; + hash = "sha256-ZQQ6ZxjJf31SVnzAzfQe+/wzsfksbAxeGfYKfsaa5yA="; }; nativeBuildInputs = [ setuptools ]; @@ -25,7 +26,7 @@ buildPythonPackage rec { meta = with lib; { description = "Typing stubs for html5lib"; homepage = "https://pypi.org/project/types-html5lib/"; - license = with licenses; [ asl20 ]; + license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; } From 3fcd5bb5dcfd7efbf4361b42ace1500419ba4242 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 13:00:16 +0200 Subject: [PATCH 116/168] trufflehog: 3.88.32 -> 3.88.33 Diff: https://github.com/trufflesecurity/trufflehog/compare/refs/tags/v3.88.32...refs/tags/v3.88.33 Changelog: https://github.com/trufflesecurity/trufflehog/releases/tag/v3.88.33 --- pkgs/tools/security/trufflehog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/trufflehog/default.nix b/pkgs/tools/security/trufflehog/default.nix index b47c52c32819..ea5de9e217dd 100644 --- a/pkgs/tools/security/trufflehog/default.nix +++ b/pkgs/tools/security/trufflehog/default.nix @@ -8,13 +8,13 @@ buildGoModule rec { pname = "trufflehog"; - version = "3.88.32"; + version = "3.88.33"; src = fetchFromGitHub { owner = "trufflesecurity"; repo = "trufflehog"; tag = "v${version}"; - hash = "sha256-KU9wKqdQLiJOoeEW3NRgxB2rfmu9bSe61Z+Wo0UqVa4="; + hash = "sha256-cliUjSMH36XhV0VLHqTcZa2xBbgRqFl2kczl4AmVEwU="; }; vendorHash = "sha256-sF7+2IrVlGskoQjVYrnmFC7KSNSh0fl3BErSMJESrcA="; From 6056226fc1958dc80d6ca022e9ef7e2f45a71c77 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 11:54:47 +0000 Subject: [PATCH 117/168] python3Packages.python-hcl2: 7.2.0 -> 7.2.1 --- pkgs/development/python-modules/python-hcl2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-hcl2/default.nix b/pkgs/development/python-modules/python-hcl2/default.nix index 2afaf4592bfe..0a8c4ab9fc18 100644 --- a/pkgs/development/python-modules/python-hcl2/default.nix +++ b/pkgs/development/python-modules/python-hcl2/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "python-hcl2"; - version = "7.2.0"; + version = "7.2.1"; pyproject = true; src = fetchFromGitHub { owner = "amplify-education"; repo = "python-hcl2"; tag = "v${version}"; - hash = "sha256-PXdk1Edoqqxi3Rsx7Xn0S+kcabc3mo6GqjQ9ZgXZq10="; + hash = "sha256-+qPTRm068x09MxRNUx+oo2qd8NsLorXtdN3mEX4CxPE="; }; disabled = pythonOlder "3.7"; From 13f9bcca4a77f3e81284d0ccd6e8ee60ccea959a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 12:39:10 +0000 Subject: [PATCH 118/168] dps8m: 3.0.1 -> 3.1.0 --- pkgs/by-name/dp/dps8m/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/dp/dps8m/package.nix b/pkgs/by-name/dp/dps8m/package.nix index be699921829c..5b11f6fd8eeb 100644 --- a/pkgs/by-name/dp/dps8m/package.nix +++ b/pkgs/by-name/dp/dps8m/package.nix @@ -11,13 +11,13 @@ stdenv.mkDerivation rec { pname = "dps8m"; - version = "3.0.1"; + version = "3.1.0"; src = fetchFromGitLab { owner = "dps8m"; repo = "dps8m"; rev = "R${version}"; - hash = "sha256-YCDeHryxXZXOXqUXkbWwH7Vna+ljzydFXPeo2et87x8="; + hash = "sha256-2PTL9C1sV+UTZibjyxBkQh9Y1xqwawNPwWL4eX0ilvU="; fetchSubmodules = true; }; From 5e875ae4d772aea4685471f45402247fd8f875e5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 12:48:55 +0000 Subject: [PATCH 119/168] python3Packages.pinocchio: 3.6.0 -> 3.7.0 --- pkgs/by-name/pi/pinocchio/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pi/pinocchio/package.nix b/pkgs/by-name/pi/pinocchio/package.nix index 39d1f62a1d78..be827f530c1c 100644 --- a/pkgs/by-name/pi/pinocchio/package.nix +++ b/pkgs/by-name/pi/pinocchio/package.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "pinocchio"; - version = "3.6.0"; + version = "3.7.0"; src = fetchFromGitHub { owner = "stack-of-tasks"; repo = "pinocchio"; rev = "v${finalAttrs.version}"; - hash = "sha256-2DLK0mDZ7nQZO8L4dDV4+xvlN+eRdmN82ncfdMJm0Pc="; + hash = "sha256-MykHbHSXY/eJ1+8v0hptiXeVmglU9/wImimiuByw0tE="; }; outputs = [ From 5d9133c6cad2d49cd98c21250dd2da4f8c329bef Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 13:00:10 +0000 Subject: [PATCH 120/168] quill-log: 9.0.2 -> 9.0.3 --- pkgs/by-name/qu/quill-log/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/qu/quill-log/package.nix b/pkgs/by-name/qu/quill-log/package.nix index eea168fec2a9..e568034ceff4 100644 --- a/pkgs/by-name/qu/quill-log/package.nix +++ b/pkgs/by-name/qu/quill-log/package.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "quill-log"; - version = "9.0.2"; + version = "9.0.3"; src = fetchFromGitHub { owner = "odygrd"; repo = "quill"; rev = "v${version}"; - hash = "sha256-8BXdSITZKdJSstS4LbOCT9BedFHbmd/6bAPiQsCC+8Y="; + hash = "sha256-G7DUxN32g32744kfGVth4G7GJz8xguIfvX/ojkgh/Ao="; }; nativeBuildInputs = [ cmake ]; From b1a415a4225ccd21c3f61c52a2f072456cfe3065 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 23 May 2025 14:41:53 +0200 Subject: [PATCH 121/168] python312Packages.pytorch-metric-learning: cleanup, fix on darwin --- .../pytorch-metric-learning/default.nix | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/pytorch-metric-learning/default.nix b/pkgs/development/python-modules/pytorch-metric-learning/default.nix index de7ed5ebecd2..730304ce9138 100644 --- a/pkgs/development/python-modules/pytorch-metric-learning/default.nix +++ b/pkgs/development/python-modules/pytorch-metric-learning/default.nix @@ -1,10 +1,9 @@ { - stdenv, lib, + stdenv, + config, buildPythonPackage, fetchFromGitHub, - isPy27, - config, # build-system setuptools, @@ -20,9 +19,11 @@ tensorboard, # tests - cudaSupport ? config.cudaSupport, pytestCheckHook, torchvision, + writableTmpDirAsHomeHook, + + cudaSupport ? config.cudaSupport, }: buildPythonPackage rec { @@ -30,11 +31,9 @@ buildPythonPackage rec { version = "2.8.1"; pyproject = true; - disabled = isPy27; - src = fetchFromGitHub { owner = "KevinMusgrave"; - repo = pname; + repo = "pytorch-metric-learning"; tag = "v${version}"; hash = "sha256-WO/gv8rKkxY3pR627WrEPVyvZnvUZIKMzOierIW8bJA="; }; @@ -64,7 +63,6 @@ buildPythonPackage rec { }; preCheck = '' - export HOME=$TMP export TEST_DEVICE=cpu export TEST_DTYPES=float32,float64 # half-precision tests fail on CPU ''; @@ -73,6 +71,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook torchvision + writableTmpDirAsHomeHook ] ++ lib.flatten (lib.attrValues optional-dependencies); disabledTests = @@ -100,6 +99,12 @@ buildPythonPackage rec { "test_with_same_parent_label_tester" ]; + disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ + # Fatal Python error: Segmentation fault + "tests/testers/" + "tests/utils/" + ]; + meta = { description = "Metric learning library for PyTorch"; homepage = "https://github.com/KevinMusgrave/pytorch-metric-learning"; From 547960e8a8a20ae337cf705ef95790539e3aeffd Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 13:28:44 +0000 Subject: [PATCH 122/168] sidplayfp: 2.14.0 -> 2.14.1 --- pkgs/by-name/si/sidplayfp/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/si/sidplayfp/package.nix b/pkgs/by-name/si/sidplayfp/package.nix index 8f82bf3b6cba..0ef29c2b851e 100644 --- a/pkgs/by-name/si/sidplayfp/package.nix +++ b/pkgs/by-name/si/sidplayfp/package.nix @@ -17,13 +17,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "sidplayfp"; - version = "2.14.0"; + version = "2.14.1"; src = fetchFromGitHub { owner = "libsidplayfp"; repo = "sidplayfp"; rev = "v${finalAttrs.version}"; - hash = "sha256-3xNwmOPROnTPCVSdBYoI+k558WK4B2I66Tvik2mK3es="; + hash = "sha256-t2bZcslHPRxrTt3cDW6mTXK35/MMw1u1CnVXTzN/UEs="; }; strictDeps = true; From f345271c0f760cd86b42481280ca1f9bc3dd33d2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 14:52:43 +0000 Subject: [PATCH 123/168] python3Packages.shlib: 1.6 -> 1.7 --- pkgs/development/python-modules/shlib/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/shlib/default.nix b/pkgs/development/python-modules/shlib/default.nix index 26e252233054..a8d50caa9950 100644 --- a/pkgs/development/python-modules/shlib/default.nix +++ b/pkgs/development/python-modules/shlib/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "shlib"; - version = "1.6"; + version = "1.7"; pyproject = true; src = fetchFromGitHub { owner = "KenKundert"; repo = "shlib"; tag = "v${version}"; - hash = "sha256-f2jJgpjybutCpYnIT+RihtoA1YlXdhTs+MvV8bViSMQ="; + hash = "sha256-clhiTuU5vvZSzdGPA3CISiBTnAahvv1SOKAfMpb6lYU="; }; postPatch = '' @@ -38,7 +38,7 @@ buildPythonPackage rec { meta = with lib; { description = "shell library"; homepage = "https://github.com/KenKundert/shlib"; - changelog = "https://github.com/KenKundert/shlib/releases/tag/v${version}"; + changelog = "https://github.com/KenKundert/shlib/releases/tag/${src.tag}"; license = licenses.gpl3Plus; maintainers = with maintainers; [ jpetrucciani ]; }; From b215903865d6896e3af12f6fe26159626feb57dd Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Wed, 30 Apr 2025 15:43:02 +0200 Subject: [PATCH 124/168] zoom-us: allow to select xdg-desktop-portal packages To reduce the closure size of the zoom-us package, this commit replaces the `xdgDesktopPortalSupport` option with several new options that permit to (de-)select several XDG desktop portal packages to be used by `zoom-us`. Furthermore, two new options permit to inject further packages (e.g. individual XDG desktop portal packages) into the virtual filesystem that will be prepared by bubblewrap for zoom-us: * `targetPkgs` is a *function* that maps the `pkgs` packages attrset to a list of packages. * `targetPkgsFixed` is a simple list of packages. `targetPkgs` should be preferred before `targetPkgsFixed` if possible, as the `buildFHSEnv` mechanism expects a function as explained above: It needs to extract a list of dependency packages for a `pkgs` package attrset. Package injection likely also works if `targetPkgsFixed` is used, but that creates a liability in that changes of the `buildFHSEnv` implementation might (at least more likely) break zoom-us in unexpected ways. Note: This now *disables* all XDG desktop portal packages by default. Co-authored-by: Philip Taron --- pkgs/by-name/zo/zoom-us/package.nix | 65 ++++++++++++++++++++++++----- 1 file changed, 54 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/zo/zoom-us/package.nix b/pkgs/by-name/zo/zoom-us/package.nix index edcedf74d46a..d47a3d1e6e7b 100644 --- a/pkgs/by-name/zo/zoom-us/package.nix +++ b/pkgs/by-name/zo/zoom-us/package.nix @@ -5,10 +5,51 @@ makeWrapper, xar, cpio, - pulseaudioSupport ? true, - xdgDesktopPortalSupport ? true, callPackage, buildFHSEnv, + + # Support pulseaudio by default + pulseaudioSupport ? true, + + # Whether to support XDG portals at all + xdgDesktopPortalSupport ? ( + plasma6XdgDesktopPortalSupport + || plasma5XdgDesktopPortalSupport + || lxqtXdgDesktopPortalSupport + || gnomeXdgDesktopPortalSupport + || hyprlandXdgDesktopPortalSupport + || wlrXdgDesktopPortalSupport + || xappXdgDesktopPortalSupport + ), + + # This is Plasma 6 (KDE) XDG portal support + plasma6XdgDesktopPortalSupport ? false, + + # This is Plasma 5 (KDE) XDG portal support + plasma5XdgDesktopPortalSupport ? false, + + # This is LXQT XDG portal support + lxqtXdgDesktopPortalSupport ? false, + + # This is GNOME XDG portal support + gnomeXdgDesktopPortalSupport ? false, + + # This is Hyprland XDG portal support + hyprlandXdgDesktopPortalSupport ? false, + + # This is `wlroots` XDG portal support + wlrXdgDesktopPortalSupport ? false, + + # This is Xapp XDG portal support, used for GTK and various Cinnamon/MATE/Xfce4 infrastructure. + xappXdgDesktopPortalSupport ? false, + + # This function can be overridden to add in extra packages + targetPkgs ? pkgs: [ ], + + # This list can be overridden to add in extra packages + # that are independent of the underlying package attrset + targetPkgsFixed ? [ ], + }: let @@ -179,17 +220,19 @@ let pkgs.libpulseaudio pkgs.pulseaudio ] - ++ lib.optionals xdgDesktopPortalSupport [ - pkgs.kdePackages.xdg-desktop-portal-kde - pkgs.lxqt.xdg-desktop-portal-lxqt - pkgs.plasma5Packages.xdg-desktop-portal-kde - pkgs.xdg-desktop-portal + ++ lib.optional xdgDesktopPortalSupport pkgs.xdg-desktop-portal + ++ lib.optional plasma6XdgDesktopPortalSupport pkgs.kdePackages.xdg-desktop-portal-kde + ++ lib.optional plasma5XdgDesktopPortalSupport pkgs.plasma5Packages.xdg-desktop-portal-kde + ++ lib.optional lxqtXdgDesktopPortalSupport pkgs.lxqt.xdg-desktop-portal-lxqt + ++ lib.optionals gnomeXdgDesktopPortalSupport [ pkgs.xdg-desktop-portal-gnome pkgs.xdg-desktop-portal-gtk - pkgs.xdg-desktop-portal-hyprland - pkgs.xdg-desktop-portal-wlr - pkgs.xdg-desktop-portal-xapp - ]; + ] + ++ lib.optional hyprlandXdgDesktopPortalSupport pkgs.xdg-desktop-portal-hyprland + ++ lib.optional wlrXdgDesktopPortalSupport pkgs.xdg-desktop-portal-wlr + ++ lib.optional xappXdgDesktopPortalSupport pkgs.xdg-desktop-portal-xapp + ++ targetPkgs pkgs + ++ targetPkgsFixed; # We add the `unpacked` zoom archive to the FHS env # and also bind-mount its `/opt` directory. From 1a5059ded6ac7993240b5e7c6f4cec44791e6269 Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Thu, 1 May 2025 19:25:23 +0200 Subject: [PATCH 125/168] nixos/programs: add zoom-us module The zoom-us package can be build with pulseaudio and with support for one or more xdg-desktop-portal implementations. This new module sets the proper build options from the system configuration, and adds the resulting package to `systemPackages`. If an individual `zoom-us` package is assigned to the `package` option with `package = zoom-us.override { ... };`, arguments given to `.override` will take precedence over the options determined by the module. This permits to explicitly enable or disable some zoom-us features while keeping the module's choices for other features. Co-authored-by: Philip Taron --- nixos/modules/module-list.nix | 1 + nixos/modules/programs/zoom-us.nix | 63 ++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 nixos/modules/programs/zoom-us.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index a0889ddc18b5..8996ad509bcd 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -357,6 +357,7 @@ ./programs/ydotool.nix ./programs/yubikey-touch-detector.nix ./programs/zmap.nix + ./programs/zoom-us.nix ./programs/zoxide.nix ./programs/zsh/oh-my-zsh.nix ./programs/zsh/zsh-autoenv.nix diff --git a/nixos/modules/programs/zoom-us.nix b/nixos/modules/programs/zoom-us.nix new file mode 100644 index 000000000000..22c6e3f8eedd --- /dev/null +++ b/nixos/modules/programs/zoom-us.nix @@ -0,0 +1,63 @@ +{ + config, + lib, + pkgs, + ... +}: + +{ + options.programs.zoom-us = { + enable = lib.mkEnableOption "zoom.us video conferencing application"; + package = lib.mkPackageOption pkgs "zoom-us" { }; + }; + + config.environment.systemPackages = lib.mkIf config.programs.zoom-us.enable ( + lib.singleton ( + # The pattern here is to use the already-overridden value, or provide a default based on the + # configuration elsewhere. + config.programs.zoom-us.package.override (prev: { + # Support pulseaudio if it's enabled on the system. + pulseaudioSupport = prev.pulseaudioSupport or config.services.pulseaudio.enable; + + # Support Plasma 6 desktop environment if it's enabled on the system. + plasma6XdgDesktopPortalSupport = + prev.plasma6XdgDesktopPortalSupport or config.services.desktopManager.plasma6.enable; + + # Support Plasma 5 desktop environment if it's enabled on the system. + plasma5XdgDesktopPortalSupport = + prev.plasma5XdgDesktopPortalSupport or config.services.xserver.desktopManager.plasma5.enable; + + # Support LXQT desktop environment if it's enabled on the system. + # There's also `config.services.xserver.desktopManager.lxqt.enable` + lxqtXdgDesktopPortalSupport = prev.lxqtXdgDesktopPortalSupport or config.xdg.portal.lxqt.enable; + + # Support GNOME desktop environment if it's enabled on the system. + gnomeXdgDesktopPortalSupport = + prev.gnomeXdgDesktopPortalSupport or config.services.xserver.desktopManager.gnome.enable; + + # Support Hyprland desktop for Wayland if it's enabled on the system. + hyprlandXdgDesktopPortalSupport = + prev.hyprlandXdgDesktopPortalSupport or config.programs.hyprland.enable; + + # Support `wlroots` XDG desktop portal support if it's enabled. + wlrXdgDesktopPortalSupport = prev.wlrXdgDesktopPortalSupport or config.xdg.portal.wlr.enable; + + # Support xapp XDG desktop portals if the Cinnamon desktop environment is enabled. + # The site claims that it's also used for Xfce4 and MATE; consider adding those to the + # default in the future. + xappXdgDesktopPortalSupport = + prev.xappXdgDesktopPortalSupport or config.services.xserver.desktopManager.cinnamon.enable; + + # Finally, if the `xdg.portal.enable` option is set somehow, use the `targetPkgs` function + # to add those relevant packages in. + targetPkgs = + prev.targetPkgs or ( + pkgs: + lib.optionals config.xdg.portal.enable ( + [ pkgs.xdg-desktop-portal ] ++ config.xdg.portal.extraPortals + ) + ); + }) + ) + ); +} From 3d01f3bfe8ec447839ed4f5799371d3c05dd281c Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Thu, 1 May 2025 19:28:32 +0200 Subject: [PATCH 126/168] nixos/tests: simple zoom-us test to verify the module --- nixos/tests/all-tests.nix | 1 + nixos/tests/zoom-us.nix | 18 ++++++++++++++++++ pkgs/by-name/zo/zoom-us/package.nix | 2 ++ 3 files changed, 21 insertions(+) create mode 100644 nixos/tests/zoom-us.nix diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 03a736fdd7dc..3be71541b4ed 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -1503,6 +1503,7 @@ in zipline = runTest ./zipline.nix; zoneminder = runTest ./zoneminder.nix; zookeeper = runTest ./zookeeper.nix; + zoom-us = runTest ./zoom-us.nix; zram-generator = runTest ./zram-generator.nix; zrepl = runTest ./zrepl.nix; zsh-history = runTest ./zsh-history.nix; diff --git a/nixos/tests/zoom-us.nix b/nixos/tests/zoom-us.nix new file mode 100644 index 000000000000..bc9961cf5a86 --- /dev/null +++ b/nixos/tests/zoom-us.nix @@ -0,0 +1,18 @@ +{ hostPkgs, lib, ... }: +{ + name = "zoom-us"; + + nodes.machine = + { pkgs, ... }: + { + imports = [ ./common/x11.nix ]; + programs.zoom-us.enable = true; + }; + + testScript = '' + machine.succeed("which zoom") # fail early if this is missing + machine.wait_for_x() + machine.execute("zoom >&2 &") + machine.wait_for_window("Zoom Workplace") + ''; +} diff --git a/pkgs/by-name/zo/zoom-us/package.nix b/pkgs/by-name/zo/zoom-us/package.nix index d47a3d1e6e7b..ced4d0aab432 100644 --- a/pkgs/by-name/zo/zoom-us/package.nix +++ b/pkgs/by-name/zo/zoom-us/package.nix @@ -6,6 +6,7 @@ xar, cpio, callPackage, + nixosTests, buildFHSEnv, # Support pulseaudio by default @@ -141,6 +142,7 @@ let passthru.updateScript = ./update.sh; passthru.tests.startwindow = callPackage ./test.nix { }; + passthru.tests.nixos-module = nixosTests.zoom-us; meta = { homepage = "https://zoom.us/"; From 77829dad796f05b7970a4c148b29b650d6e375ad Mon Sep 17 00:00:00 2001 From: Frederic Ruget Date: Thu, 22 May 2025 06:10:17 +0200 Subject: [PATCH 127/168] base91: init at 0.1.0 --- pkgs/by-name/ba/base91/package.nix | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pkgs/by-name/ba/base91/package.nix diff --git a/pkgs/by-name/ba/base91/package.nix b/pkgs/by-name/ba/base91/package.nix new file mode 100644 index 000000000000..fce0ceb29b60 --- /dev/null +++ b/pkgs/by-name/ba/base91/package.nix @@ -0,0 +1,37 @@ +{ + lib, + stdenv, + fetchFromGitHub, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "base91"; + version = "0.1.0"; + + src = fetchFromGitHub { + owner = "douzebis"; + repo = "base91"; + rev = "v${finalAttrs.version}"; + hash = "sha256-Lx569OtNU0z884763FSByH0yXIq6GzeXyp5NVvMejco="; # update as needed + }; + + makeFlags = [ + "-C" + "src" + "all" + ]; + installFlags = [ + "-C" + "src" + "install" + "prefix=$(out)" + ]; + + meta = { + description = "CLI tool for encoding binary data as ASCII characters"; + homepage = "https://github.com/douzebis/base91"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ douzebis ]; + platforms = lib.platforms.unix; + }; +}) From b23096aeb402c1dad719b69aceb6c1744f6569b5 Mon Sep 17 00:00:00 2001 From: Frederic Ruget Date: Fri, 23 May 2025 15:19:15 +0200 Subject: [PATCH 128/168] base91: Fix the build on MacOS --- pkgs/by-name/ba/base91/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/ba/base91/package.nix b/pkgs/by-name/ba/base91/package.nix index fce0ceb29b60..7acf2197edf8 100644 --- a/pkgs/by-name/ba/base91/package.nix +++ b/pkgs/by-name/ba/base91/package.nix @@ -16,6 +16,7 @@ stdenv.mkDerivation (finalAttrs: { }; makeFlags = [ + "CC=cc" "-C" "src" "all" From 67e106c96c104402d26250c3a58e211373c12181 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 16:10:11 +0000 Subject: [PATCH 129/168] terraform-providers.pagerduty: 3.25.0 -> 3.25.2 --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index ce7f37fcf97e..c26a76b5f3f3 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1003,11 +1003,11 @@ "vendorHash": null }, "pagerduty": { - "hash": "sha256-L+CyniSMCrG24+7f3rW4k5SIAuhI5FIqcGP4QX+huOY=", + "hash": "sha256-CvW7u0VD6qOHYUVJIin38qrkVLtNfNeK4QlLOICFu1E=", "homepage": "https://registry.terraform.io/providers/PagerDuty/pagerduty", "owner": "PagerDuty", "repo": "terraform-provider-pagerduty", - "rev": "v3.25.0", + "rev": "v3.25.2", "spdx": "MPL-2.0", "vendorHash": null }, From a80e58190a667c927890067412449007d9a9672e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 16:14:09 +0000 Subject: [PATCH 130/168] terraform-providers.yandex: 0.141.0 -> 0.142.0 --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index ce7f37fcf97e..7de74510fba5 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1481,12 +1481,12 @@ "vendorHash": "sha256-GRnVhGpVgFI83Lg34Zv1xgV5Kp8ioKTFV5uaqS80ATg=" }, "yandex": { - "hash": "sha256-durYCbCkN4m8U4m9f68JfHmVoabINTulDUC2QWpiJA4=", + "hash": "sha256-zwwFvbQWsreZ/4QFmqIk8xXMUaLqfUFnTZig3lGW//w=", "homepage": "https://registry.terraform.io/providers/yandex-cloud/yandex", "owner": "yandex-cloud", "repo": "terraform-provider-yandex", - "rev": "v0.141.0", + "rev": "v0.142.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-5I2vcC1sPDS/wlDJNp9RI/T2P2RwJlGz47Z+8MfUzdY=" + "vendorHash": "sha256-RrtTtQdiAWxLEefIH/pcpeAlCjqY7PYy9ZCDd+gIEEk=" } } From 001b990fa9eacdcec82922c7942baf0aee43094d Mon Sep 17 00:00:00 2001 From: Sapphire Date: Fri, 23 May 2025 12:06:25 -0500 Subject: [PATCH 131/168] opencomposite: 1.0.1473 -> 1.0.1521 --- pkgs/by-name/op/opencomposite/package.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/op/opencomposite/package.nix b/pkgs/by-name/op/opencomposite/package.nix index 96461d4fb867..f8086641cb98 100644 --- a/pkgs/by-name/op/opencomposite/package.nix +++ b/pkgs/by-name/op/opencomposite/package.nix @@ -16,14 +16,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "opencomposite"; - version = "1.0.1473"; + version = "1.0.1521"; src = fetchFromGitLab { owner = "znixian"; repo = "OpenOVR"; tag = finalAttrs.version; fetchSubmodules = true; - hash = "sha256-kwu8eM/rQBcZfs91loh7QAB46a01F9n5Xm1DmMd53MQ="; + hash = "sha256-qi1iqlsr0P+Hw63O3ayCBIEGdNtkhl8FCPcs/m0WIzs="; }; nativeBuildInputs = [ @@ -51,6 +51,7 @@ stdenv.mkDerivation (finalAttrs: { runHook preInstall mkdir -p $out/lib/opencomposite cp -r bin/ $out/lib/opencomposite + touch $out/lib/opencomposite/bin/version.txt runHook postInstall ''; From 03b26cd7a7c894716b9484d0f4110c959e7faffd Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 17:29:03 +0000 Subject: [PATCH 132/168] snort: 3.7.2.0 -> 3.7.4.0 --- pkgs/by-name/sn/snort/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sn/snort/package.nix b/pkgs/by-name/sn/snort/package.nix index 59761a4f73ce..405ed2cb1de7 100644 --- a/pkgs/by-name/sn/snort/package.nix +++ b/pkgs/by-name/sn/snort/package.nix @@ -19,13 +19,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "snort"; - version = "3.7.2.0"; + version = "3.7.4.0"; src = fetchFromGitHub { owner = "snort3"; repo = "snort3"; tag = finalAttrs.version; - hash = "sha256-/ObL48Wo8OPFljBxQP5X/ASvGPcdvPKueosjJm1BRTI="; + hash = "sha256-c5GVFzZOeaI2te49m9crt9I0E/awHjcDR621tvDVgSQ="; }; nativeBuildInputs = [ From 1817ed2e8e7382a1c2dac1655ae72e3611cc38ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Bori?= Date: Thu, 30 Jan 2025 22:51:10 +0100 Subject: [PATCH 133/168] vscode-extensions.nhoizey.gremlins: init at 0.26.0 Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com> --- .../editors/vscode/extensions/default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index f760cf14bc70..fee7053ca574 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -3752,6 +3752,23 @@ let }; }; + nhoizey.gremlins = buildVscodeMarketplaceExtension { + mktplcRef = { + name = "gremlins"; + publisher = "nhoizey"; + version = "0.26.0"; + hash = "sha256-ML04SccSOrj5qY0HHJ5jiNbWkPElU1+zZNSX2i1K2uk="; + }; + meta = { + changelog = "https://marketplace.visualstudio.com/items/nhoizey.gremlins/changelog"; + description = "Reveals some characters that can be harmful because they are invisible or looking like legitimate ones"; + downloadPage = "https://marketplace.visualstudio.com/items?itemName=nhoizey.gremlins"; + homepage = "https://github.com/nhoizey/vscode-gremlins"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.theobori ]; + }; + }; + nimlang.nimlang = callPackage ./nimlang.nimlang { }; njpwerner.autodocstring = buildVscodeMarketplaceExtension { From e3cbf7ac772121b46a7e73df328485b02a0b9adf Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Fri, 23 May 2025 23:20:24 +0530 Subject: [PATCH 134/168] vscode-extensions.nhoizey.gremlins: move them to a different file inspired by https://github.com/NixOS/nixpkgs/pull/402784#pullrequestreview-2822373244 Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com> --- .../editors/vscode/extensions/default.nix | 17 +---------------- .../extensions/nhoizey.gremlins/default.nix | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 16 deletions(-) create mode 100644 pkgs/applications/editors/vscode/extensions/nhoizey.gremlins/default.nix diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index fee7053ca574..43f41079649a 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -3752,22 +3752,7 @@ let }; }; - nhoizey.gremlins = buildVscodeMarketplaceExtension { - mktplcRef = { - name = "gremlins"; - publisher = "nhoizey"; - version = "0.26.0"; - hash = "sha256-ML04SccSOrj5qY0HHJ5jiNbWkPElU1+zZNSX2i1K2uk="; - }; - meta = { - changelog = "https://marketplace.visualstudio.com/items/nhoizey.gremlins/changelog"; - description = "Reveals some characters that can be harmful because they are invisible or looking like legitimate ones"; - downloadPage = "https://marketplace.visualstudio.com/items?itemName=nhoizey.gremlins"; - homepage = "https://github.com/nhoizey/vscode-gremlins"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.theobori ]; - }; - }; + nhoizey.gremlins = callPackage ./nhoizey.gremlins { }; nimlang.nimlang = callPackage ./nimlang.nimlang { }; diff --git a/pkgs/applications/editors/vscode/extensions/nhoizey.gremlins/default.nix b/pkgs/applications/editors/vscode/extensions/nhoizey.gremlins/default.nix new file mode 100644 index 000000000000..352a87b7be27 --- /dev/null +++ b/pkgs/applications/editors/vscode/extensions/nhoizey.gremlins/default.nix @@ -0,0 +1,19 @@ +{ lib, vscode-utils }: + +vscode-utils.buildVscodeMarketplaceExtension { + mktplcRef = { + name = "gremlins"; + publisher = "nhoizey"; + version = "0.26.0"; + hash = "sha256-ML04SccSOrj5qY0HHJ5jiNbWkPElU1+zZNSX2i1K2uk="; + }; + + meta = { + changelog = "https://marketplace.visualstudio.com/items/nhoizey.gremlins/changelog"; + description = "Reveals some characters that can be harmful because they are invisible or looking like legitimate ones"; + downloadPage = "https://marketplace.visualstudio.com/items?itemName=nhoizey.gremlins"; + homepage = "https://github.com/nhoizey/vscode-gremlins"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.theobori ]; + }; +} From a1cd7f7cb1aca69faee3dc723d1fa6c966035504 Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Fri, 23 May 2025 20:57:11 +0300 Subject: [PATCH 135/168] teleport_16: 16.5.9 -> 16.5.10 Changelog: https://github.com/gravitational/teleport/releases/tag/v16.5.10 Diff: https://github.com/gravitational/teleport/compare/v16.5.9...v16.5.10 --- pkgs/by-name/te/teleport_16/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/te/teleport_16/package.nix b/pkgs/by-name/te/teleport_16/package.nix index 9aa3b7962b95..8011f843ac44 100644 --- a/pkgs/by-name/te/teleport_16/package.nix +++ b/pkgs/by-name/te/teleport_16/package.nix @@ -2,9 +2,9 @@ teleport, }: teleport.override { - version = "16.5.9"; - hash = "sha256-lIWJV3AQ+XWApfjtdUL8ZlHAXCyvwVAGsZjjvXul36I="; + version = "16.5.10"; + hash = "sha256-i+2IK+X0Opyv2tQPpj2XhY64aQGdbylS/C7LsTykuXI="; vendorHash = "sha256-DdVBtMwz0AIGCYj/QLczG8GPP9mqKrdF+M0NqmM6J0I="; pnpmHash = "sha256-JQca2eFxcKJDHIaheJBg93ivZU95UWMRgbcK7QE4R10="; - cargoHash = "sha256-04zykCcVTptEPGy35MIWG+tROKFzEepLBmn04mSbt7I"; + cargoHash = "sha256-04zykCcVTptEPGy35MIWG+tROKFzEepLBmn04mSbt7I="; } From c2b0ff8510566094ffd38a5b7764bb73fb3c2fa2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 20 May 2025 06:44:24 +0000 Subject: [PATCH 136/168] brial: 1.2.12 -> 1.2.14 --- pkgs/by-name/br/brial/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/br/brial/package.nix b/pkgs/by-name/br/brial/package.nix index 6e3ab205ccbc..03be142f0f98 100644 --- a/pkgs/by-name/br/brial/package.nix +++ b/pkgs/by-name/br/brial/package.nix @@ -10,14 +10,14 @@ }: stdenv.mkDerivation rec { - version = "1.2.12"; + version = "1.2.14"; pname = "brial"; src = fetchFromGitHub { owner = "BRiAl"; repo = "BRiAl"; rev = version; - sha256 = "sha256-y6nlqRBJRWohGDAKe/F37qBP1SgtFHR1HD+erFJReOM="; + sha256 = "sha256-vefvqlJab4lVHH35uItdNw5YBEOgVrETIYGoPlq8660="; }; # FIXME package boost-test and enable checks From 732d47f66494fb65bb9b867f68542c888ebe582f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 18:20:10 +0000 Subject: [PATCH 137/168] python3Packages.pyfibaro: 0.8.2 -> 0.8.3 --- pkgs/development/python-modules/pyfibaro/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyfibaro/default.nix b/pkgs/development/python-modules/pyfibaro/default.nix index 159e2500c8ae..fb83863dccdf 100644 --- a/pkgs/development/python-modules/pyfibaro/default.nix +++ b/pkgs/development/python-modules/pyfibaro/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "pyfibaro"; - version = "0.8.2"; + version = "0.8.3"; pyproject = true; disabled = pythonOlder "3.9"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "rappenze"; repo = "pyfibaro"; tag = version; - hash = "sha256-0mWqjiKPyXlnXDG+SP/RrV3aergTG9cEFKe3Zczr8IE="; + hash = "sha256-KdlndW066TDxZpkIP0Oa3Lii0mBpwELfHtoGKiwh6GE="; }; build-system = [ setuptools ]; From c0e9b6ffe39a715e4c789ca93ae360a3f40f6dc1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 18:24:48 +0000 Subject: [PATCH 138/168] python3Packages.glyphslib: 6.10.1 -> 6.10.2 --- pkgs/development/python-modules/glyphslib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/glyphslib/default.nix b/pkgs/development/python-modules/glyphslib/default.nix index f17380ea9a28..88d17c067f6c 100644 --- a/pkgs/development/python-modules/glyphslib/default.nix +++ b/pkgs/development/python-modules/glyphslib/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "glyphslib"; - version = "6.10.1"; + version = "6.10.2"; format = "pyproject"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "googlefonts"; repo = "glyphsLib"; tag = "v${version}"; - hash = "sha256-JC0IPLdueptanpuzMsSFGOK/ptVk+c6EDOFwKH3tDWE="; + hash = "sha256-70qTvGYDbh6P57wbQGaKHmJYxOeY2xNN4cKL0tAJYEI="; }; nativeBuildInputs = [ setuptools-scm ]; From b4459dd63ee4eee63d2019258e6362d2457a1697 Mon Sep 17 00:00:00 2001 From: Tali Auster Date: Fri, 23 May 2025 12:28:52 -0600 Subject: [PATCH 139/168] maintainers: update atalii --- maintainers/maintainer-list.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 8559afabf837..8dd288a67eb4 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2343,11 +2343,10 @@ githubId = 11548989; }; atalii = { - email = "taliauster@gmail.com"; + email = "me@tali.network"; github = "atalii"; githubId = 120901234; - name = "tali auster"; - matrix = "@atalii:matrix.org"; + name = "Tali Auster"; }; atar13 = { name = "Anthony Tarbinian"; From c72036b379e138d5f24b3a2c07078b5efa9f3a55 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 18:51:20 +0000 Subject: [PATCH 140/168] step-kms-plugin: 0.12.2 -> 0.13.0 --- pkgs/by-name/st/step-kms-plugin/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/st/step-kms-plugin/package.nix b/pkgs/by-name/st/step-kms-plugin/package.nix index 99a253961d19..681ee769333a 100644 --- a/pkgs/by-name/st/step-kms-plugin/package.nix +++ b/pkgs/by-name/st/step-kms-plugin/package.nix @@ -12,16 +12,16 @@ buildGoModule rec { pname = "step-kms-plugin"; - version = "0.12.2"; + version = "0.13.0"; src = fetchFromGitHub { owner = "smallstep"; repo = pname; rev = "v${version}"; - hash = "sha256-6+5xZGzLsXu+283aOCeRmzxvjsk5PXTpbszVYuSSuGA="; + hash = "sha256-XZRNEUMko3HMlKOyHYK3TQywkqC6K5VvdvGFTSk6V68="; }; - vendorHash = "sha256-S8T2GMFOVYqG2+8jdDRNJfAN057HagUA3HR0/UBpBR0="; + vendorHash = "sha256-gIzllbLAshJXoTawTbQ+ERliaHwhJhQM6v1aykDKF7M="; proxyVendor = true; From 9bc794da2cf38f509bced372a79d347c46d29c06 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 18:51:40 +0000 Subject: [PATCH 141/168] srgn: 0.13.6 -> 0.13.7 --- pkgs/by-name/sr/srgn/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sr/srgn/package.nix b/pkgs/by-name/sr/srgn/package.nix index c3d173bd7cb3..f8c3ada6f924 100644 --- a/pkgs/by-name/sr/srgn/package.nix +++ b/pkgs/by-name/sr/srgn/package.nix @@ -6,17 +6,17 @@ }: rustPlatform.buildRustPackage rec { pname = "srgn"; - version = "0.13.6"; + version = "0.13.7"; src = fetchFromGitHub { owner = "alexpovel"; repo = "srgn"; rev = "srgn-v${version}"; - hash = "sha256-q6LFNymfCkKhmQXsJvKOya9WPchURI1SBdk64bpmsts="; + hash = "sha256-JHO++d25UmYgTuSOvkZaF0rkab8B6XetHcoEchpLimk="; }; useFetchCargoVendor = true; - cargoHash = "sha256-qS1I4+pL3K4HIXNFID/ajldxIJJJXhpi0hxivHWk9Vg="; + cargoHash = "sha256-H0LBH8nd/uyFufrUWVyNZjn9AKJcAlsv3UVuXoM7ZGM="; nativeBuildInputs = [ installShellFiles ]; From 8c727b29865c9bcfd1ef46b5c8c4fe760ea8f49b Mon Sep 17 00:00:00 2001 From: Leona Maroni Date: Fri, 23 May 2025 20:51:36 +0200 Subject: [PATCH 142/168] Release NixOS 25.05 --- doc/release-notes/rl-2505.section.md | 2 +- nixos/doc/manual/release-notes/rl-2505.section.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/release-notes/rl-2505.section.md b/doc/release-notes/rl-2505.section.md index b7aad1e44a37..65026b4df91a 100644 --- a/doc/release-notes/rl-2505.section.md +++ b/doc/release-notes/rl-2505.section.md @@ -1,4 +1,4 @@ -# Nixpkgs 25.05 (2025.05/??) {#sec-nixpkgs-release-25.05} +# Nixpkgs 25.05 (2025.05/23) {#sec-nixpkgs-release-25.05} ## Highlights {#sec-nixpkgs-release-25.05-highlights} diff --git a/nixos/doc/manual/release-notes/rl-2505.section.md b/nixos/doc/manual/release-notes/rl-2505.section.md index 5dab691dc408..50cd00ea43c3 100644 --- a/nixos/doc/manual/release-notes/rl-2505.section.md +++ b/nixos/doc/manual/release-notes/rl-2505.section.md @@ -1,4 +1,4 @@ -# Release 25.05 (“Warbler”, 2025.05/??) {#sec-release-25.05} +# Release 25.05 (“Warbler”, 2025.05/23) {#sec-release-25.05} ## Highlights {#sec-release-25.05-highlights} From d7a918f49e14c2bb39a6c245643d4ef0ab08ed2c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 18:54:12 +0000 Subject: [PATCH 143/168] schemat: 0.4.0 -> 0.4.1 --- pkgs/by-name/sc/schemat/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sc/schemat/package.nix b/pkgs/by-name/sc/schemat/package.nix index 4d100a6e2b48..76905a869b73 100644 --- a/pkgs/by-name/sc/schemat/package.nix +++ b/pkgs/by-name/sc/schemat/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "schemat"; - version = "0.4.0"; + version = "0.4.1"; src = fetchFromGitHub { owner = "raviqqe"; repo = "schemat"; tag = "v${finalAttrs.version}"; - hash = "sha256-LFUXohgQQObuyXv0dVzaok922x0G6zd2vqxDvJU506U="; + hash = "sha256-GthDo45Kmz7ZNwFZGGhTcyDn8+g6QUbaVv8M46tm+Qs="; }; - cargoHash = "sha256-YdeeFYETvgWQFkjERRaP3NsqBNLdtWqo67spxrhuYDk="; + cargoHash = "sha256-g18k/wyZqeunTHnLnfOTh4I0NlbgNya5y3EZVyY1B1c="; doInstallCheck = true; nativeInstallCheckInputs = [ versionCheckHook ]; From baba43ad02bf6c9eca30376524f44b77facd1de4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 19:02:16 +0000 Subject: [PATCH 144/168] prometheus-junos-czerwonk-exporter: 0.14.1 -> 0.14.2 --- .../monitoring/prometheus/junos-czerwonk-exporter.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/junos-czerwonk-exporter.nix b/pkgs/servers/monitoring/prometheus/junos-czerwonk-exporter.nix index 8fa4abcbb556..882b6c8a5e8f 100644 --- a/pkgs/servers/monitoring/prometheus/junos-czerwonk-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/junos-czerwonk-exporter.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "junos-czerwonk-exporter"; - version = "0.14.1"; + version = "0.14.2"; src = fetchFromGitHub { owner = "czerwonk"; repo = "junos_exporter"; rev = version; - sha256 = "sha256-PZKP8kcxU5ArC+bkYIO91Dg/f85T5qneX4wuKTj/jP4="; + sha256 = "sha256-mYhe4EYbvSXi08/sUrsk0G9zx6LjScXBr0cDecr1cQo="; }; - vendorHash = "sha256-C2PvbvWJC6EGEKtg/roaG63YFdW9/ZYHulUdwC/2/MY="; + vendorHash = "sha256-MXKebWivVU/AP/YlCGM7a28AVJSPk10OFcdkYthf0G0="; meta = with lib; { description = "Exporter for metrics from devices running JunOS"; From dddfd1570c8481433bc2d1a07718ed9195f393f7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 19:07:44 +0000 Subject: [PATCH 145/168] powerstation: 0.4.3 -> 0.5.0 --- pkgs/by-name/po/powerstation/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/po/powerstation/package.nix b/pkgs/by-name/po/powerstation/package.nix index 19e559a16662..9072bf77669c 100644 --- a/pkgs/by-name/po/powerstation/package.nix +++ b/pkgs/by-name/po/powerstation/package.nix @@ -10,17 +10,17 @@ rustPlatform.buildRustPackage rec { pname = "powerstation"; - version = "0.4.3"; + version = "0.5.0"; src = fetchFromGitHub { owner = "ShadowBlip"; repo = "PowerStation"; tag = "v${version}"; - hash = "sha256-2NCUDR85LAWGYrxruHLSipgX41N/jgy/P34qfm+bOb4="; + hash = "sha256-m8o2sg0qsn+QyPWiOFDIYgfNb/gT5UO6w6Fjo0sg2u0="; }; useFetchCargoVendor = true; - cargoHash = "sha256-4ACSwxGSPEdbGeVL44SN4qCd7ActL1T0xKuebPvTHPk="; + cargoHash = "sha256-/C9BJBKhkBpvxMonbctmdRa697u3SgGQHyzTbP/dt78="; nativeBuildInputs = [ cmake From a7d367eaaf02cd763c36517a47f10d1261b6bebe Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 21:23:44 +0200 Subject: [PATCH 146/168] cdncheck: 1.1.18 -> 1.1.19 Diff: https://github.com/projectdiscovery/cdncheck/compare/refs/tags/v1.1.18...refs/tags/v1.1.19 Changelog: https://github.com/projectdiscovery/cdncheck/releases/tag/v1.1.19 --- pkgs/by-name/cd/cdncheck/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/cd/cdncheck/package.nix b/pkgs/by-name/cd/cdncheck/package.nix index 9736275892aa..4c74cb1c8f05 100644 --- a/pkgs/by-name/cd/cdncheck/package.nix +++ b/pkgs/by-name/cd/cdncheck/package.nix @@ -6,7 +6,7 @@ buildGoModule rec { pname = "cdncheck"; - version = "1.1.18"; + version = "1.1.19"; src = fetchFromGitHub { owner = "projectdiscovery"; From 00d3ed84420e7fb55508972e540b0b7bf1868553 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 19 May 2025 21:09:27 +0000 Subject: [PATCH 147/168] babl: 0.1.112 -> 0.1.114 --- pkgs/by-name/ba/babl/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ba/babl/package.nix b/pkgs/by-name/ba/babl/package.nix index e99f319fb7e5..9a9c7f5ac305 100644 --- a/pkgs/by-name/ba/babl/package.nix +++ b/pkgs/by-name/ba/babl/package.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "babl"; - version = "0.1.112"; + version = "0.1.114"; outputs = [ "out" @@ -23,7 +23,7 @@ stdenv.mkDerivation (finalAttrs: { src = fetchurl { url = "https://download.gimp.org/pub/babl/${lib.versions.majorMinor finalAttrs.version}/babl-${finalAttrs.version}.tar.xz"; - hash = "sha256-+2lmgkIXh8j+zIPoqrSBId7I7jjRGbZSkc/L4xUCink="; + hash = "sha256-vLt3hsHkR3A9s7x/o01i0NLRF7IvBNiDTHstXe1FZIc="; }; patches = [ From 67e8b7b03f02daebb58febbf56a82ce05a0042f1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 19:37:03 +0000 Subject: [PATCH 148/168] kddockwidgets: 2.2.4 -> 2.2.5 --- pkgs/development/libraries/kddockwidgets/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/kddockwidgets/default.nix b/pkgs/development/libraries/kddockwidgets/default.nix index 1eb58611b83f..a9c2e8cd44d5 100644 --- a/pkgs/development/libraries/kddockwidgets/default.nix +++ b/pkgs/development/libraries/kddockwidgets/default.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation rec { pname = "KDDockWidgets"; - version = "2.2.4"; + version = "2.2.5"; src = fetchFromGitHub { owner = "KDAB"; repo = pname; rev = "v${version}"; - sha256 = "sha256-B5Fy0ax5ytNB9w8a0HxsVdkQrFubLs/D26LAijrQk3E="; + sha256 = "sha256-4xaTfNwfAIQox2YcusEZJt5f9/Kld+zveFEiIVw5dRc="; }; nativeBuildInputs = [ cmake ]; From 87170c742193d0b15ea4b678a6fed61af381503f Mon Sep 17 00:00:00 2001 From: Marie Ramlow Date: Fri, 23 May 2025 21:30:45 +0200 Subject: [PATCH 149/168] doc/rl-2505: fix renovate release notes link Upstream had the brilliant idea of deleting their major version upgrade notes without setting up any form of redirects to the new places (https://github.com/renovatebot/renovate/pull/35788), so the current link is broken. Also removes a duplicate release notes entry for renovate. --- doc/release-notes/rl-2505.section.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/doc/release-notes/rl-2505.section.md b/doc/release-notes/rl-2505.section.md index 65026b4df91a..2651ebb072d7 100644 --- a/doc/release-notes/rl-2505.section.md +++ b/doc/release-notes/rl-2505.section.md @@ -74,7 +74,7 @@ configuration settings. Notably, it now defaults to listening on a socket rather than a port. See [Migrating from version 1.x](https://github.com/roehling/postsrsd/blob/2.0.10/README.rst#migrating-from-version-1x) and [Postfix Setup](https://github.com/roehling/postsrsd?tab=readme-ov-file#postfix-setup) for details. -- `renovate` was updated to v39. See the [upstream release notes](https://docs.renovatebot.com/release-notes-for-major-versions/#version-39) for breaking changes. +- `renovate` was updated to v39. See the [upstream release notes](https://github.com/renovatebot/renovate/releases/tag/39.0.0) for breaking changes. Like upstream's docker images, renovate now runs on NodeJS 22. - The hand written `perlPackages.SearchXapian` bindings have been dropped in favor of the (mostly compatible) @@ -323,9 +323,6 @@ - `tldr` now uses [`tldr-python-client`](https://github.com/tldr-pages/tldr-python-client) instead of [`tldr-c-client`](https://github.com/tldr-pages/tldr-c-client) which is unmaintained. -- `renovate` was updated to v39. See the [upstream release notes](https://docs.renovatebot.com/release-notes-for-major-versions/#version-39) for breaking changes. - Like upstream's docker images, renovate now runs on NodeJS 22. - - The behavior of the `networking.nat.externalIP` and `networking.nat.externalIPv6` options has been changed. `networking.nat.forwardPorts` now only forwards packets destined for the specified IP addresses. - `python3Packages.bpycv` has been removed due to being incompatible with Blender 4 and unmaintained. From e3454e65e1663655daa1292399464a600c629f19 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 14:09:48 +0000 Subject: [PATCH 150/168] dotslash: 0.5.2 -> 0.5.3 --- pkgs/by-name/do/dotslash/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/do/dotslash/package.nix b/pkgs/by-name/do/dotslash/package.nix index 4b1f8c21e26d..cabf25500197 100644 --- a/pkgs/by-name/do/dotslash/package.nix +++ b/pkgs/by-name/do/dotslash/package.nix @@ -9,15 +9,15 @@ rustPlatform.buildRustPackage rec { pname = "dotslash"; - version = "0.5.2"; + version = "0.5.3"; src = fetchCrate { inherit pname version; - hash = "sha256-Djoi3x6FZZORnnE5Ly8VibfdzVNPef45JvL83fAJqAQ="; + hash = "sha256-csggbV5IyO9TlhN8S/E3LRfqqFJvj4cshByC6S7qpDk="; }; useFetchCargoVendor = true; - cargoHash = "sha256-PLiVHq5GrCf/C8AxZyKmWPr47PvU6HxpBad8dxJXhHs="; + cargoHash = "sha256-FyFrKaV5itdr0HtE5Ize21mwCwHRTzmIt+kmB972s9M="; doCheck = false; # http tests passthru = { From 049f62637b4a4f662e282c17390f32e4681aa0a5 Mon Sep 17 00:00:00 2001 From: Leah Amelia Chen Date: Sun, 18 May 2025 23:00:40 +0200 Subject: [PATCH 151/168] quick-webapps: init at 1.0.2 Fixes #312216 Succeeds #322226 --- pkgs/by-name/qu/quick-webapps/package.nix | 67 +++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 pkgs/by-name/qu/quick-webapps/package.nix diff --git a/pkgs/by-name/qu/quick-webapps/package.nix b/pkgs/by-name/qu/quick-webapps/package.nix new file mode 100644 index 000000000000..aadb689f944a --- /dev/null +++ b/pkgs/by-name/qu/quick-webapps/package.nix @@ -0,0 +1,67 @@ +{ + lib, + stdenv, + rustPlatform, + fetchFromGitHub, + + just, + pkg-config, + makeBinaryWrapper, + libcosmicAppHook, + + libxkbcommon, + openssl, + wayland, + + nix-update-script, +}: +rustPlatform.buildRustPackage (finalAttrs: { + pname = "quick-webapps"; + version = "1.0.2"; + + src = fetchFromGitHub { + owner = "cosmic-utils"; + repo = "web-apps"; + tag = finalAttrs.version; + hash = "sha256-yd4lALm7eG4NxrvaduZC1SZEE83j/nRsG2ufrfUMJJM="; + }; + + useFetchCargoVendor = true; + cargoHash = "sha256-gg8WCzKbpFT8SRzMxC7ezvv+uN9IpIbGy/yytFC9uaM="; + + nativeBuildInputs = [ + just + pkg-config + libcosmicAppHook + ]; + + buildInputs = [ + libxkbcommon + openssl + ]; + + env.VERGEN_GIT_SHA = finalAttrs.src.tag; + + dontUseJustBuild = true; + dontUseJustCheck = true; + + justFlags = [ + "--set" + "prefix" + (placeholder "out") + "--set" + "bin-src" + "target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/quick-webapps" + ]; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Web App Manager for the COSMIC desktop"; + homepage = "https://github.com/cosmic-utils/web-apps"; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ pluiedev ]; + mainProgram = "quick-webapps"; + }; +}) From 692a12b6c40972dfe1f7a01abb4099e11775cf82 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 19:52:55 +0000 Subject: [PATCH 152/168] gpg-tui: 0.11.0 -> 0.11.1 --- pkgs/tools/security/gpg-tui/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/gpg-tui/default.nix b/pkgs/tools/security/gpg-tui/default.nix index 042e27913b18..58266ed19229 100644 --- a/pkgs/tools/security/gpg-tui/default.nix +++ b/pkgs/tools/security/gpg-tui/default.nix @@ -16,17 +16,17 @@ rustPlatform.buildRustPackage rec { pname = "gpg-tui"; - version = "0.11.0"; + version = "0.11.1"; src = fetchFromGitHub { owner = "orhun"; repo = "gpg-tui"; rev = "v${version}"; - hash = "sha256-aHmLcWiDy5GMbcKi285tfBggNmGkpVAoZMm4dt8LKak="; + hash = "sha256-qGm0eHpVFGn8tNdEnmQ4oIfjCxyixMFYdxih7pHvGH0="; }; useFetchCargoVendor = true; - cargoHash = "sha256-VLBou/XNYTd8vJNT+ntShLCRy9pzjCwJlbDbfRX2ag8="; + cargoHash = "sha256-XdT/6N7CJJ8LY0KmkO6PuRdnq1FZvbZrGhky1hmyr2Y="; nativeBuildInputs = [ gpgme # for gpgme-config From fa1afba267fb070d7858490ebdea72ddbd41c04c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 19:59:00 +0000 Subject: [PATCH 153/168] goa: 3.21.0 -> 3.21.1 --- pkgs/by-name/go/goa/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/go/goa/package.nix b/pkgs/by-name/go/goa/package.nix index 2079ec3d323e..97f7016f78c6 100644 --- a/pkgs/by-name/go/goa/package.nix +++ b/pkgs/by-name/go/goa/package.nix @@ -6,15 +6,15 @@ buildGoModule rec { pname = "goa"; - version = "3.21.0"; + version = "3.21.1"; src = fetchFromGitHub { owner = "goadesign"; repo = "goa"; rev = "v${version}"; - hash = "sha256-yHls7qGZhQIIYbPWCs0dm3W2DgKZq4fJbnNCPTqUy/s="; + hash = "sha256-LDgpwSMB6TBdq4UwxNtddIH5KWkQSsgh3ok5JJNfwRw="; }; - vendorHash = "sha256-mKFKZuAIQdDwDJ2DMtW18NgFn6Sd35TQHBY4xVKzoUs="; + vendorHash = "sha256-Mu93LchlPSU05r/zwZ+q0wgwWF2cTQEjOupr9lmuqVU="; subPackages = [ "cmd/goa" ]; From 79d9be9810314eca39cd4062191fb331058c291c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 22:01:03 +0200 Subject: [PATCH 154/168] cfripper: 1.17.1 -> 1.17.2 Diff: https://github.com/Skyscanner/cfripper/compare/refs/tags/v1.17.1...refs/tags/v1.17.2 Changelog: https://github.com/Skyscanner/cfripper/releases/tag/v1.17.2 --- pkgs/by-name/cf/cfripper/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/cf/cfripper/package.nix b/pkgs/by-name/cf/cfripper/package.nix index 2f9958f05417..c2c3c6681c09 100644 --- a/pkgs/by-name/cf/cfripper/package.nix +++ b/pkgs/by-name/cf/cfripper/package.nix @@ -6,14 +6,14 @@ python3.pkgs.buildPythonApplication rec { pname = "cfripper"; - version = "1.17.1"; + version = "1.17.2"; pyproject = true; src = fetchFromGitHub { owner = "Skyscanner"; repo = "cfripper"; tag = "v${version}"; - hash = "sha256-qAsIm1mcvMQshKActmFZuxgH3Yyzvw6m7e8DklG1AQ4="; + hash = "sha256-HhgOpjqWtnwx9u6EsDr/ba0g3lAmEi/slXQnBqu3h3Y="; }; pythonRelaxDeps = [ From 931492623932d2b67a4c532793b7871c718d8526 Mon Sep 17 00:00:00 2001 From: Julien Jeanneret Date: Thu, 22 May 2025 19:07:13 +0200 Subject: [PATCH 155/168] jetbrains.plugins: add go-template, cucumber-for-java, gherkin, maven-helper and update existing plugins. --- .../editors/jetbrains/plugins/plugins.json | 291 ++++++++++++------ 1 file changed, 200 insertions(+), 91 deletions(-) diff --git a/pkgs/applications/editors/jetbrains/plugins/plugins.json b/pkgs/applications/editors/jetbrains/plugins/plugins.json index 16b6589f6210..a34e9ccd6cc4 100644 --- a/pkgs/applications/editors/jetbrains/plugins/plugins.json +++ b/pkgs/applications/editors/jetbrains/plugins/plugins.json @@ -47,7 +47,7 @@ ], "builds": { "243.22562.218": "https://plugins.jetbrains.com/files/1347/667258/scala-intellij-bin-2024.3.35.zip", - "251.25410.129": "https://plugins.jetbrains.com/files/1347/735853/scala-intellij-bin-2025.1.23.zip" + "251.25410.129": "https://plugins.jetbrains.com/files/1347/748379/scala-intellij-bin-2025.1.24.zip" }, "name": "scala" }, @@ -268,6 +268,48 @@ }, "name": "file-watchers" }, + "7179": { + "compatible": [ + "idea-community", + "idea-ultimate" + ], + "builds": { + "243.22562.218": "https://plugins.jetbrains.com/files/7179/617030/MavenHelper-4.29.0-IJ2022.2.zip", + "251.25410.129": "https://plugins.jetbrains.com/files/7179/617030/MavenHelper-4.29.0-IJ2022.2.zip" + }, + "name": "maven-helper" + }, + "7212": { + "compatible": [ + "clion", + "datagrip", + "goland", + "idea-community", + "idea-ultimate", + "mps", + "phpstorm", + "pycharm-professional", + "rider", + "ruby-mine", + "rust-rover", + "webstorm" + ], + "builds": { + "243.22562.218": "https://plugins.jetbrains.com/files/7212/636678/cucumber-java-243.22562.13.zip", + "251.23774.423": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", + "251.25410.104": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", + "251.25410.115": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", + "251.25410.117": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", + "251.25410.119": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", + "251.25410.120": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", + "251.25410.122": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", + "251.25410.123": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", + "251.25410.129": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", + "251.25410.140": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip", + "251.25410.148": "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip" + }, + "name": "cucumber-for-java" + }, "7219": { "compatible": [ "idea-ultimate", @@ -632,6 +674,37 @@ }, "name": "nixidea" }, + "9164": { + "compatible": [ + "clion", + "datagrip", + "goland", + "idea-community", + "idea-ultimate", + "mps", + "phpstorm", + "pycharm-professional", + "rider", + "ruby-mine", + "rust-rover", + "webstorm" + ], + "builds": { + "243.22562.218": "https://plugins.jetbrains.com/files/9164/636661/gherkin-243.22562.13.zip", + "251.23774.423": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", + "251.25410.104": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", + "251.25410.115": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", + "251.25410.117": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", + "251.25410.119": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", + "251.25410.120": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", + "251.25410.122": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", + "251.25410.123": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", + "251.25410.129": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", + "251.25410.140": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip", + "251.25410.148": "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip" + }, + "name": "gherkin" + }, "9525": { "compatible": [ "clion", @@ -891,6 +964,35 @@ }, "name": "hocon" }, + "10581": { + "compatible": [ + "clion", + "datagrip", + "idea-community", + "idea-ultimate", + "mps", + "phpstorm", + "pycharm-professional", + "rider", + "ruby-mine", + "rust-rover", + "webstorm" + ], + "builds": { + "243.22562.218": "https://plugins.jetbrains.com/files/10581/629973/go-template-243.21565.122.zip", + "251.23774.423": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", + "251.25410.104": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", + "251.25410.115": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", + "251.25410.117": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", + "251.25410.119": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", + "251.25410.120": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", + "251.25410.122": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", + "251.25410.123": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", + "251.25410.129": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip", + "251.25410.148": "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip" + }, + "name": "go-template" + }, "11058": { "compatible": [ "clion", @@ -938,18 +1040,18 @@ "webstorm" ], "builds": { - "243.22562.218": "https://plugins.jetbrains.com/files/11349/737408/aws-toolkit-jetbrains-standalone-3.70-243.zip", - "251.23774.423": "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip", - "251.25410.104": "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip", - "251.25410.115": "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip", - "251.25410.117": "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip", - "251.25410.119": "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip", - "251.25410.120": "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip", - "251.25410.122": "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip", - "251.25410.123": "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip", - "251.25410.129": "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip", - "251.25410.140": "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip", - "251.25410.148": "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip" + "243.22562.218": "https://plugins.jetbrains.com/files/11349/743145/aws-toolkit-jetbrains-standalone-3.71-243.zip", + "251.23774.423": "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip", + "251.25410.104": "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip", + "251.25410.115": "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip", + "251.25410.117": "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip", + "251.25410.119": "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip", + "251.25410.120": "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip", + "251.25410.122": "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip", + "251.25410.123": "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip", + "251.25410.129": "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip", + "251.25410.140": "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip", + "251.25410.148": "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip" }, "name": "aws-toolkit" }, @@ -1288,18 +1390,18 @@ "webstorm" ], "builds": { - "243.22562.218": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip", - "251.23774.423": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip", - "251.25410.104": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip", - "251.25410.115": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip", - "251.25410.117": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip", - "251.25410.119": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip", - "251.25410.120": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip", - "251.25410.122": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip", - "251.25410.123": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip", - "251.25410.129": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip", - "251.25410.140": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip", - "251.25410.148": "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip" + "243.22562.218": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip", + "251.23774.423": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip", + "251.25410.104": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip", + "251.25410.115": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip", + "251.25410.117": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip", + "251.25410.119": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip", + "251.25410.120": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip", + "251.25410.122": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip", + "251.25410.123": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip", + "251.25410.129": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip", + "251.25410.140": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip", + "251.25410.148": "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip" }, "name": "github-copilot" }, @@ -1350,18 +1452,18 @@ "webstorm" ], "builds": { - "243.22562.218": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", - "251.23774.423": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", - "251.25410.104": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", - "251.25410.115": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", - "251.25410.117": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", - "251.25410.119": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", - "251.25410.120": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", - "251.25410.122": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", - "251.25410.123": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", - "251.25410.129": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", - "251.25410.140": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", - "251.25410.148": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip" + "243.22562.218": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", + "251.23774.423": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", + "251.25410.104": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", + "251.25410.115": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", + "251.25410.117": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", + "251.25410.119": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", + "251.25410.120": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", + "251.25410.122": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", + "251.25410.123": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", + "251.25410.129": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", + "251.25410.140": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip", + "251.25410.148": "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip" }, "name": "catppuccin-theme" }, @@ -1412,18 +1514,18 @@ "webstorm" ], "builds": { - "243.22562.218": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar", - "251.23774.423": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar", - "251.25410.104": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar", - "251.25410.115": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar", - "251.25410.117": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar", - "251.25410.119": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar", - "251.25410.120": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar", - "251.25410.122": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar", - "251.25410.123": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar", - "251.25410.129": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar", - "251.25410.140": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar", - "251.25410.148": "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar" + "243.22562.218": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar", + "251.23774.423": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar", + "251.25410.104": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar", + "251.25410.115": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar", + "251.25410.117": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar", + "251.25410.119": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar", + "251.25410.120": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar", + "251.25410.122": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar", + "251.25410.123": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar", + "251.25410.129": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar", + "251.25410.140": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar", + "251.25410.148": "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar" }, "name": "gerry-themes" }, @@ -1567,18 +1669,18 @@ "webstorm" ], "builds": { - "243.22562.218": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip", - "251.23774.423": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip", - "251.25410.104": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip", - "251.25410.115": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip", - "251.25410.117": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip", - "251.25410.119": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip", - "251.25410.120": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip", - "251.25410.122": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip", - "251.25410.123": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip", - "251.25410.129": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip", - "251.25410.140": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip", - "251.25410.148": "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip" + "243.22562.218": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "251.23774.423": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "251.25410.104": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "251.25410.115": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "251.25410.117": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "251.25410.119": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "251.25410.120": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "251.25410.122": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "251.25410.123": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "251.25410.129": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "251.25410.140": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip", + "251.25410.148": "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip" }, "name": "developer-tools" }, @@ -1667,16 +1769,16 @@ "builds": { "243.22562.218": null, "251.23774.423": "https://plugins.jetbrains.com/files/22857/716106/vcs-gitlab-IU-251.23774.435-IU.zip", - "251.25410.104": "https://plugins.jetbrains.com/files/22857/736969/vcs-gitlab-IU-251.25410.123-IU.zip", - "251.25410.115": "https://plugins.jetbrains.com/files/22857/736969/vcs-gitlab-IU-251.25410.123-IU.zip", - "251.25410.117": "https://plugins.jetbrains.com/files/22857/736969/vcs-gitlab-IU-251.25410.123-IU.zip", - "251.25410.119": "https://plugins.jetbrains.com/files/22857/736969/vcs-gitlab-IU-251.25410.123-IU.zip", - "251.25410.120": "https://plugins.jetbrains.com/files/22857/736969/vcs-gitlab-IU-251.25410.123-IU.zip", - "251.25410.122": "https://plugins.jetbrains.com/files/22857/736969/vcs-gitlab-IU-251.25410.123-IU.zip", - "251.25410.123": "https://plugins.jetbrains.com/files/22857/736969/vcs-gitlab-IU-251.25410.123-IU.zip", - "251.25410.129": "https://plugins.jetbrains.com/files/22857/736969/vcs-gitlab-IU-251.25410.123-IU.zip", - "251.25410.140": "https://plugins.jetbrains.com/files/22857/736969/vcs-gitlab-IU-251.25410.123-IU.zip", - "251.25410.148": "https://plugins.jetbrains.com/files/22857/736969/vcs-gitlab-IU-251.25410.123-IU.zip" + "251.25410.104": "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip", + "251.25410.115": "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip", + "251.25410.117": "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip", + "251.25410.119": "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip", + "251.25410.120": "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip", + "251.25410.122": "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip", + "251.25410.123": "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip", + "251.25410.129": "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip", + "251.25410.140": "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip", + "251.25410.148": "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip" }, "name": "gitlab" }, @@ -1875,17 +1977,17 @@ "webstorm" ], "builds": { - "243.22562.218": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", - "251.25410.104": null, - "251.25410.115": null, - "251.25410.117": null, - "251.25410.119": null, - "251.25410.120": null, - "251.25410.122": null, - "251.25410.123": null, - "251.25410.129": null, - "251.25410.140": null, - "251.25410.148": null + "243.22562.218": "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip", + "251.25410.104": "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip", + "251.25410.115": "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip", + "251.25410.117": "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip", + "251.25410.119": "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip", + "251.25410.120": "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip", + "251.25410.122": "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip", + "251.25410.123": "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip", + "251.25410.129": "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip", + "251.25410.140": "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip", + "251.25410.148": "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip" }, "name": "markdtask" } @@ -1896,9 +1998,11 @@ "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip": "sha256-25vtwXuBNiYL9E0pKG4dqJDkwX1FckAErdqRPKXybQA=", "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip": "sha256-Bnnvy+HDNkx2DQM7N+JUa8hQzIA3H/5Y0WpWAjPmhUI=", "https://plugins.jetbrains.com/files/10481/671222/intellij-hocon-2025.1.0.zip": "sha256-GO0bXJsHx9O1A6M9NUCv9m4JwKHs5plwSssgx+InNqE=", + "https://plugins.jetbrains.com/files/10581/629973/go-template-243.21565.122.zip": "sha256-6pZ8vHw8C08IUvU76meMTGShoSMntQABv/KBX4BRDYs=", + "https://plugins.jetbrains.com/files/10581/711019/go-template-251.23774.318.zip": "sha256-zX1nEdq84wwQvGhV664V5bNBPVTI4zWo306JtjXcGkE=", "https://plugins.jetbrains.com/files/11058/734948/Extra_Icons-2025.1.5.zip": "sha256-trVQyV4PcxI1BeLtIg3fP1dOITiFRheIGpxU3GuA83w=", - "https://plugins.jetbrains.com/files/11349/737408/aws-toolkit-jetbrains-standalone-3.70-243.zip": "sha256-KtMvtJjV1Oos3H+bffQX6RTTiLj5BIQbOzbRnOu212s=", - "https://plugins.jetbrains.com/files/11349/737411/aws-toolkit-jetbrains-standalone-3.70-251.zip": "sha256-u55hK8kuHIbdNxj/lCF2J8jy+n8Kben23kjIJ8u9r1g=", + "https://plugins.jetbrains.com/files/11349/743145/aws-toolkit-jetbrains-standalone-3.71-243.zip": "sha256-vmVmsichxO8hpzqCtLdqxScHbjwAN+7tVDnbCAh7Kuc=", + "https://plugins.jetbrains.com/files/11349/743148/aws-toolkit-jetbrains-standalone-3.71-251.zip": "sha256-aH9P8oYlUSKGJHzbwPZe+gOUekuGZc8PPQoJXKahfCY=", "https://plugins.jetbrains.com/files/12024/667413/ReSharperPlugin.CognitiveComplexity-2025.1.0-eap01.zip": "sha256-SWIXjxnwAf9dju1oOgzePrTY0lPNNX54Afp5OIkGGi4=", "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip": "sha256-phv8MTGKNGzRviKzX+nIVTbkX4WkU82QVO5zXUQLtAo=", "https://plugins.jetbrains.com/files/12062/711097/keymap-vscode-251.23774.318.zip": "sha256-obbLL8n6gK8oFw8NnJbdAylPHfTv4GheBDnVFOUpwL0=", @@ -1909,7 +2013,7 @@ "https://plugins.jetbrains.com/files/13017/711726/keymap-visualStudio-251.23774.329.zip": "sha256-DKkgt0z/ui0bOLSbnKy51RL7+9HIqeriroi2otZ64mQ=", "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip": "sha256-eKwDE+PMtYhrGbDDZPS5cimssH+1xV4GF6RXXg/3urU=", "https://plugins.jetbrains.com/files/1347/667258/scala-intellij-bin-2024.3.35.zip": "sha256-4I75KqXyFl73S63O+00usrg8QBcuBRBgfjRmCQMpNks=", - "https://plugins.jetbrains.com/files/1347/735853/scala-intellij-bin-2025.1.23.zip": "sha256-y81nA9MBa3NA8cilX3EIuhlBrKRf3RHP5VSElhguLg8=", + "https://plugins.jetbrains.com/files/1347/748379/scala-intellij-bin-2025.1.24.zip": "sha256-S0VowbZJFSPwbydmAYoZ9mMOvgXHB90Rx+KECdybQwI=", "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip": "sha256-Tgu8CfDhO6KugfuLNhmxe89dMm+Qo3fmAg/8hwjUaoc=", "https://plugins.jetbrains.com/files/14004/711000/protoeditor-251.23774.318.zip": "sha256-ZYn365EY8+VP1TKM4wBotMj1hYbSSr4J1K5oIZlE2SE=", "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar": "sha256-eXInfAqY3yEZRXCAuv3KGldM1pNKEioNwPB0rIGgJFw=", @@ -1918,30 +2022,30 @@ "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip": "sha256-yKpWQZGxfsKwPVTJLHpF4KGJ5ANCd73uxHlfdFE4Qf4=", "https://plugins.jetbrains.com/files/164/736911/IdeaVIM-2.24.0.zip": "sha256-v9GD6SHR1MuhXrqLit/eQm2R9c50aZTjpUJN/UOKCa0=", "https://plugins.jetbrains.com/files/16604/734947/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.7.zip": "sha256-9DLY2HIyQR2w8xPVVKa2l7OZWqfoTvHkLGZYEnDV7/A=", - "https://plugins.jetbrains.com/files/17718/736879/github-copilot-intellij-1.5.44-243.zip": "sha256-YReboCD5Fy6nM1c0s/azNzip2LTSCDCaur9UmMD0kKQ=", + "https://plugins.jetbrains.com/files/17718/743191/github-copilot-intellij-1.5.45-243.zip": "sha256-wSIGsDmgZV8o6F9ekf84b06Ul16rw+wXdQx/X4D/rCI=", "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip": "sha256-KrzZTKZMQqoEMw+vDUv2jjs0EX0leaPBkU8H/ecq/oI=", - "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip": "sha256-QOF3nAXOfYhNl3YUK1fc9z5H2uXTPm2X+6fVZ5QP8ZQ=", + "https://plugins.jetbrains.com/files/18682/744076/Catppuccin_Theme-3.4.2.zip": "sha256-fa9GiD/PNGy8AEao99vW3DBF1FKSulu3t+wO7mdr5fk=", "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip": "sha256-8RjKjmadd1o/M+WTLtKPn354bbKgEht4nvWnMcRPN9w=", "https://plugins.jetbrains.com/files/18824/736403/CodeGlancePro-1.9.8-signed.zip": "sha256-/1lyQq7JANhcKmIaaBHZ8ZCR4p23sLjLTTq9/68Fz+c=", - "https://plugins.jetbrains.com/files/18922/734995/GerryThemes.jar": "sha256-bNZQnoCUpAyPzSRNeT1w8WOhILncjxh3ul6nOpglkK4=", + "https://plugins.jetbrains.com/files/18922/747693/GerryThemes.jar": "sha256-BAFShNv5PYuOSTysEk1A7ykqtJBAXhkMsGWGwU3X+hY=", "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip": "sha256-hoFfIid7lClHDiT+ZH3H+tFSvWYb1tSRZH1iif+kWrM=", "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip": "sha256-jGWRU0g120qYvvFiUFI10zvprTsemuIq3XmIjYxZGts=", "https://plugins.jetbrains.com/files/20146/717659/Mermaid-0.0.25_IJ.243.zip": "sha256-QqEjnN6lUUtHkDRFWPeV3vqgGB/ZfWGVDqtk8gwJEqY=", "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip": "sha256-N66Bh0AwHmg5N9PNguRAGtpJ/dLMWMp3rxjTgz9poFo=", "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip": "sha256-TZPup3EJ0cBv4i2eVAQwVmmzy0rmt4KptEsk3C7baEM=", "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip": "sha256-2qDeC2Fxp4/IfiLPL1JDquJDCzONCp4m92Ht2fnCn/M=", - "https://plugins.jetbrains.com/files/21904/726853/intellij-developer-tools-plugin-7.0.0-signed.zip": "sha256-8ZxPJoqlCGLaVBJjBp0OLJWeU+WL+B+QKECYB+VueSQ=", + "https://plugins.jetbrains.com/files/21904/744652/intellij-developer-tools-plugin-7.1.0-signed.zip": "sha256-lOPUSxlbgagD0SuXTw+fEdwTxxfUHP1Kl6L+u/oa4fs=", "https://plugins.jetbrains.com/files/21962/732363/clouds-docker-gateway-251.25410.75.zip": "sha256-kfXB36mIOn82pq+22ryztxY9K6CgwwNarNKcLuIH9G4=", "https://plugins.jetbrains.com/files/22407/736889/intellij-rust-251.25410.127.zip": "sha256-ynht10qwZ9cXWDhNJPuFOdhEAuwdr62ZAI5pRsrn7Rs=", "https://plugins.jetbrains.com/files/22707/738247/continue-intellij-extension-1.0.16.zip": "sha256-H83yxmkzqwkV5W89xuGogm4n5OSppjZAymtIZdnVXWI=", "https://plugins.jetbrains.com/files/22857/716106/vcs-gitlab-IU-251.23774.435-IU.zip": "sha256-zNNFPPPnYLkSzXX3CA1IMA0cjeXMcPY58+v80/KjVkg=", - "https://plugins.jetbrains.com/files/22857/736969/vcs-gitlab-IU-251.25410.123-IU.zip": "sha256-MolxGVW15UD2anFjEw2G3VJzwZn7BjfpZKI3TL6uogQ=", + "https://plugins.jetbrains.com/files/22857/742106/vcs-gitlab-IU-251.25410.159-IU.zip": "sha256-PwxExt+Dlq11Y5UdEwFr/2BJPST3EYY7r/3gsXoxGzo=", "https://plugins.jetbrains.com/files/23029/702798/Catppuccin_Icons-1.11.0.zip": "sha256-w2vt4kuGd5T8OA5DcTTik2ksvCu0T3oynvTqYtMsVyo=", "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip": "sha256-ssaSY1I6FopLBgVKHUyjBrqzxHLSuI/swtDfQWJ7gxU=", "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip": "sha256-zF89Q1LE6xwBeDKv4FSQ6H6cbABjz74Z/qGwddRWp7M=", "https://plugins.jetbrains.com/files/23927/734950/Extra_IDE_Tweaks-2025.1.5.zip": "sha256-bwZSaUkfJ2D6XLr0e7EoismsTmvNCyRzGd4OWu6u9n0=", "https://plugins.jetbrains.com/files/24559/734949/Extra_Tools_Pack-2025.1.6.zip": "sha256-SC8IMca0EYEmZFrMsaK3oadaemM4FQnYiTxOTt1zQGg=", - "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip": "sha256-NFHB5zWH8pUwz6OT8F7eIiapeEvHX24fj0Eo1qH45Aw=", + "https://plugins.jetbrains.com/files/26084/745003/markdtask-2025.1.2.zip": "sha256-rRSyr7nShG1q9tVSO7VRo3KoGnBcrND4D4+38gNBtqI=", "https://plugins.jetbrains.com/files/631/737817/python-251.25410.129.zip": "sha256-ieQ+ZWowWGwoTj1vxxCnO4hhNeGVE36V12V5Q5MOUr8=", "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip": "sha256-pFKAZ8xFNfUh7/Hi4NYPDQAhRRYm4WKTpCQELqBfb40=", "https://plugins.jetbrains.com/files/6884/711128/handlebars-251.23774.318.zip": "sha256-34s7pOsqMaGoVYhCuAZtylNwplQOtNQJUppepsl4F4Q=", @@ -1951,6 +2055,9 @@ "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip": "sha256-KY5VRiLJJwa9OVVog1W3MboZjwVboYwYm+i4eqooo44=", "https://plugins.jetbrains.com/files/7177/636663/fileWatcher-243.22562.13.zip": "sha256-8IHS3kmmbL8uQYnaMW7NgBIpBKT+XDJ4QDiiPZa5pzo=", "https://plugins.jetbrains.com/files/7177/711086/fileWatcher-251.23774.318.zip": "sha256-jNHP/vaCaolmvNUQRGmIgSR1ykjDtKqyJ69UIn5cz70=", + "https://plugins.jetbrains.com/files/7179/617030/MavenHelper-4.29.0-IJ2022.2.zip": "sha256-BA6gbStpYb76VS+61WCxakZyGM9Zuxokc3zfx2OBGn4=", + "https://plugins.jetbrains.com/files/7212/636678/cucumber-java-243.22562.13.zip": "sha256-q8LjYzKuTK5da+A/29Z2+bHhWKmvsIUVG1MprbsIoLM=", + "https://plugins.jetbrains.com/files/7212/711023/cucumber-java-251.23774.318.zip": "sha256-I7gwjCnW8OXzM5eioM7h6RW9qYaQX0MWJPfHOOL9KJA=", "https://plugins.jetbrains.com/files/7219/739169/Symfony_Plugin-2025.1.279.zip": "sha256-OiUfPbbSuEFTHTmAdRNev7/StLnz5d1ziebSpuEHCPA=", "https://plugins.jetbrains.com/files/7320/718466/PHP_Annotations-12.0.0.zip": "sha256-HfTd3zT/7sOrYutEkEzpFAu6AijrFrpHJg1ftP3N87Y=", "https://plugins.jetbrains.com/files/7322/737802/python-ce-251.25410.129.zip": "sha256-gN9XqO/x41scgJ9dzTdC4i4hIZJpwSeR7OjU2BG8gzU=", @@ -1969,6 +2076,8 @@ "https://plugins.jetbrains.com/files/8554/716074/featuresTrainer-251.23774.436.zip": "sha256-P6ux6UgbjeJW3lF4w696bZ73zumY8hEm1iM98IsKgTQ=", "https://plugins.jetbrains.com/files/8554/740850/featuresTrainer-251.25410.148.zip": "sha256-iK3cy0Nf87rLV0m/t3LJv65Klij/9L5l9ad2UW9O00w=", "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip": "sha256-OFisV6Vs/xlbDvchxfrREDVgVh7wcfGnot+zUrgQU6M=", + "https://plugins.jetbrains.com/files/9164/636661/gherkin-243.22562.13.zip": "sha256-aG15ecfrsvNkpLjHclJEVKEW95GvBH+dEaqa+VCRkUo=", + "https://plugins.jetbrains.com/files/9164/710996/gherkin-251.23774.318.zip": "sha256-Boy61dRieXmWrnTMfqqYZbdG/DNQ24KdguKN2fcZ+eg=", "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip": "sha256-hR7hC2phDJnHXxPy80WlEDFAhZHtMCu7nqYvAb0VeTI=", "https://plugins.jetbrains.com/files/9525/711041/dotenv-251.23774.318.zip": "sha256-0c/2qbuu+M6z0gvpme+Mkv23JlQKNTUU+9GL9mh2IFw=", "https://plugins.jetbrains.com/files/9568/728728/go-plugin-251.25410.59.zip": "sha256-hBZozpcXPSsvSH5/8hJ2OhA3ukCsLXvXGlqYMv2GtFA=", From 48ea9fc860772e2cf9258e849f6f102a8279931f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 22:07:26 +0200 Subject: [PATCH 156/168] python313Packages.inkbird-ble: 0.16.1 -> 0.16.2 Diff: https://github.com/Bluetooth-Devices/inkbird-ble/compare/refs/tags/v0.16.1...refs/tags/v0.16.2 Changelog: https://github.com/Bluetooth-Devices/inkbird-ble/blob/v0.16.2/CHANGELOG.md --- pkgs/development/python-modules/inkbird-ble/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/inkbird-ble/default.nix b/pkgs/development/python-modules/inkbird-ble/default.nix index 58068cfec1ed..1be2135e30a9 100644 --- a/pkgs/development/python-modules/inkbird-ble/default.nix +++ b/pkgs/development/python-modules/inkbird-ble/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "inkbird-ble"; - version = "0.16.1"; + version = "0.16.2"; pyproject = true; disabled = pythonOlder "3.11"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = "inkbird-ble"; tag = "v${version}"; - hash = "sha256-mSXDSMzBFF2WS+G4VxTzZtKXradxEQyoYR9G/ys+z/M="; + hash = "sha256-A/ho+tnGcFFL60r4aq1UOyP/e32Lqn+IbPOAZ75PeKk="; }; build-system = [ poetry-core ]; From 094f9b71d05c7ab0d56aa5609c403c2bff0bd7dd Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 7 May 2025 04:24:22 +0000 Subject: [PATCH 157/168] jetbrains-toolbox: 2.6.1.40902 -> 2.6.2.41321 --- pkgs/by-name/je/jetbrains-toolbox/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/je/jetbrains-toolbox/package.nix b/pkgs/by-name/je/jetbrains-toolbox/package.nix index 6a5c0eacbedf..bcad3fc51150 100644 --- a/pkgs/by-name/je/jetbrains-toolbox/package.nix +++ b/pkgs/by-name/je/jetbrains-toolbox/package.nix @@ -12,7 +12,7 @@ let pname = "jetbrains-toolbox"; - version = "2.6.1.40902"; + version = "2.6.2.41321"; updateScript = ./update.sh; @@ -47,8 +47,8 @@ let fetchzip { url = "https://download.jetbrains.com/toolbox/jetbrains-toolbox-${version}${arch}.tar.gz"; hash = selectSystem { - x86_64-linux = "sha256-P4kv6ca6mGtl334HKNkdo9Iib/Cgu3ROrbQKlQqxUj4="; - aarch64-linux = "sha256-mG8GAVPi2I0A13rKhXoXxiRIHK1QOWPv4gZxfm0+DKs="; + x86_64-linux = "sha256-nIvlO313GZhIpgyCUhp2FUzllD3tk0oRrxFzxtHSIQA="; + aarch64-linux = "sha256-iggrnpjqLEqiteXnmA+eynTB7cs9YeOnNW4DWGP6mk0="; }; }; @@ -89,8 +89,8 @@ let fetchurl { url = "https://download.jetbrains.com/toolbox/jetbrains-toolbox-${finalAttrs.version}${arch}.dmg"; hash = selectSystem { - x86_64-darwin = "sha256-Dw1CqthgvKIlHrcQIoOpYbAG5c6uvq/UgzaO4n25YJY="; - aarch64-darwin = "sha256-b/z8Pq8h6n34junSMyxRS3Y/TQ3tu05Bh77xlvMvEtI="; + x86_64-darwin = "sha256-518Ew3yhj6wrTfPklNTC6La0EOb/XmrFcNmoeNbod8k="; + aarch64-darwin = "sha256-Enyn4iJn8qLUdrvin44bGLv0dzl5VOL6KPi4AODhtPE="; }; }; From 50c9fe7400e04c388a0dc4d519d9682e24fd135d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 22:08:40 +0200 Subject: [PATCH 158/168] grype: 0.92.0 -> 0.92.2 Diff: https://github.com/anchore/grype/compare/refs/tags/v0.92.0...refs/tags/v0.92.2 Changelog: https://github.com/anchore/grype/releases/tag/v0.92.2 --- pkgs/by-name/gr/grype/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gr/grype/package.nix b/pkgs/by-name/gr/grype/package.nix index c860fed3838f..20f4942ad197 100644 --- a/pkgs/by-name/gr/grype/package.nix +++ b/pkgs/by-name/gr/grype/package.nix @@ -9,13 +9,13 @@ buildGoModule (finalAttrs: { pname = "grype"; - version = "0.92.0"; + version = "0.92.2"; src = fetchFromGitHub { owner = "anchore"; repo = "grype"; tag = "v${finalAttrs.version}"; - hash = "sha256-DwPKhUIBQYbFEYi3EmDQ4hWDLksexTOoPZCL4G+VXks="; + hash = "sha256-OySQO/ZJvaD4mrIRqymBJDXdPC8ZWCz+ELrMXvmQPvk="; # populate values that require us to use git. By doing this in postFetch we # can delete .git afterwards and maintain better reproducibility of the src. leaveDotGit = true; @@ -30,7 +30,7 @@ buildGoModule (finalAttrs: { proxyVendor = true; - vendorHash = "sha256-4yE8NIFVMikGXd44K9ysXKGzoMyW8sQcAzy61RNR/Jo="; + vendorHash = "sha256-Dp+BVwlBqMbAZivOHQWALMrLVtAncGT/rvbbIk1BFFQ="; nativeBuildInputs = [ installShellFiles ]; From d8a3ff920361c59259027bbb1c34829b506d232d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 22:15:54 +0200 Subject: [PATCH 159/168] python313Packages.python-gvm: 26.1.1 -> 26.2.0 Diff: https://github.com/greenbone/python-gvm/compare/refs/tags/v26.1.1...refs/tags/v26.2.0 Changelog: https://github.com/greenbone/python-gvm/releases/tag/v26.2.0 --- pkgs/development/python-modules/python-gvm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-gvm/default.nix b/pkgs/development/python-modules/python-gvm/default.nix index 6c5cc05e4969..72ac564fac7d 100644 --- a/pkgs/development/python-modules/python-gvm/default.nix +++ b/pkgs/development/python-modules/python-gvm/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "python-gvm"; - version = "26.1.1"; + version = "26.2.0"; pyproject = true; disabled = pythonOlder "3.9"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "greenbone"; repo = "python-gvm"; tag = "v${version}"; - hash = "sha256-NslJHSNFVaUJhUXFUPeJ/S1zIpQmaKrXgQGjKOQJw2k="; + hash = "sha256-xWNOUgTanOVYjvoZZkQBrKYr0z+dn0/ur5jdO549FXw="; }; build-system = [ poetry-core ]; From 5b56d5967baec35aab0687a66157e521338bdb39 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 22:17:30 +0200 Subject: [PATCH 160/168] python313Packages.sensorpro-ble: 0.7.0 -> 0.7.1 Diff: https://github.com/Bluetooth-Devices/sensorpro-ble/compare/refs/tags/v0.7.0...refs/tags/v0.7.1 Changelog: https://github.com/Bluetooth-Devices/sensorpro-ble/blob/v0.7.1/CHANGELOG.md --- pkgs/development/python-modules/sensorpro-ble/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/sensorpro-ble/default.nix b/pkgs/development/python-modules/sensorpro-ble/default.nix index 7fb91f04c097..637af7a57e88 100644 --- a/pkgs/development/python-modules/sensorpro-ble/default.nix +++ b/pkgs/development/python-modules/sensorpro-ble/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "sensorpro-ble"; - version = "0.7.0"; + version = "0.7.1"; pyproject = true; disabled = pythonOlder "3.9"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = "sensorpro-ble"; tag = "v${version}"; - hash = "sha256-YMcpe4daM4X23nOMubYNcmqlW8PttwDGC4WL9g4P+4I="; + hash = "sha256-/brgy3B/Hqgu1M4xmjciXJx25btN/iFgjT0TgTdij2o="; }; build-system = [ poetry-core ]; From d8b45fea9bd6b2ac6645eca419d87c659b8101de Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Fri, 23 May 2025 17:28:18 -0300 Subject: [PATCH 161/168] examine: init at 1.0.0 --- pkgs/by-name/ex/examine/package.nix | 68 +++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 pkgs/by-name/ex/examine/package.nix diff --git a/pkgs/by-name/ex/examine/package.nix b/pkgs/by-name/ex/examine/package.nix new file mode 100644 index 000000000000..1cc15d1a3f1c --- /dev/null +++ b/pkgs/by-name/ex/examine/package.nix @@ -0,0 +1,68 @@ +{ + lib, + stdenv, + rustPlatform, + fetchFromGitHub, + just, + libcosmicAppHook, + pciutils, + usbutils, + util-linux, + nix-update-script, +}: +rustPlatform.buildRustPackage (finalAttrs: { + pname = "examine"; + version = "1.0.0"; + + src = fetchFromGitHub { + owner = "cosmic-utils"; + repo = "examine"; + tag = finalAttrs.version; + hash = "sha256-9xYUJeAYqnDYZzjWM21HuSNDY+ZcUlTdj/g/MUH2A54="; + }; + + useFetchCargoVendor = true; + cargoHash = "sha256-BcBCPkahV6+xw+K+Vk4QjwX5QI1j4hNkD9YTyL24iRA="; + + nativeBuildInputs = [ + just + libcosmicAppHook + ]; + + dontUseJustBuild = true; + dontUseJustCheck = true; + + justFlags = [ + "--set" + "prefix" + (placeholder "out") + "--set" + "bin-src" + "target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/examine" + ]; + + preFixup = '' + libcosmicAppWrapperArgs+=(--prefix PATH : ${ + lib.makeBinPath [ + pciutils + usbutils + util-linux + ] + }) + ''; + + env.VERGEN_GIT_SHA = finalAttrs.version; + + passthru.updateScript = nix-update-script { }; + + meta = { + changelog = "https://github.com/cosmic-utils/examine/releases/tag/${finalAttrs.version}"; + description = "System information viewer for the COSMIC Desktop"; + homepage = "https://github.com/cosmic-utils/examine"; + license = lib.licenses.gpl3Only; + mainProgram = "examine"; + maintainers = with lib.maintainers; [ HeitorAugustoLN ]; + platforms = lib.platforms.linux; + sourceProvenance = [ lib.sourceTypes.fromSource ]; + }; +}) From dc293fac276a5a3e8227302f2e5bb26295deaace Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 20:54:35 +0000 Subject: [PATCH 162/168] deepsource: 0.8.6 -> 0.9.0 --- pkgs/by-name/de/deepsource/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/de/deepsource/package.nix b/pkgs/by-name/de/deepsource/package.nix index 191076648a5a..00f5b34b76f9 100644 --- a/pkgs/by-name/de/deepsource/package.nix +++ b/pkgs/by-name/de/deepsource/package.nix @@ -9,13 +9,13 @@ buildGoModule rec { pname = "deepsource"; - version = "0.8.6"; + version = "0.9.0"; src = fetchFromGitHub { owner = "DeepSourceCorp"; repo = "cli"; rev = "v${version}"; - hash = "sha256-6uNb4cQVerrlW/eUkjmlO1i1YKYX3qaVdo0i5cczt+I="; + hash = "sha256-GWIQT6VIvU4ZIHwK3v2bGasE4mJc2cMpUAJvIQ2zJR4="; }; nativeBuildInputs = [ installShellFiles ]; From 0a5609ac1d56f648cdad4ba6feceddd9700a5e0d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 20:55:20 +0000 Subject: [PATCH 163/168] distroshelf: 1.0.6 -> 1.0.7 --- pkgs/by-name/di/distroshelf/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/di/distroshelf/package.nix b/pkgs/by-name/di/distroshelf/package.nix index 08288b3f7ce4..154e622bd951 100644 --- a/pkgs/by-name/di/distroshelf/package.nix +++ b/pkgs/by-name/di/distroshelf/package.nix @@ -17,18 +17,18 @@ stdenv.mkDerivation (finalAttrs: { pname = "distroshelf"; - version = "1.0.6"; + version = "1.0.7"; src = fetchFromGitHub { owner = "ranfdev"; repo = "DistroShelf"; tag = "v${finalAttrs.version}"; - hash = "sha256-g+NHzz91DcdQE6KVr80ypt+IBz6w3Md27tocnKsm9b0="; + hash = "sha256-4xiqdLSmO9LXfVwF/QRJL8BhZDsNistdGVVT4YDdt4A="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit (finalAttrs) pname version src; - hash = "sha256-BoAECkZL9C23Mhvf3tDTvTdOLRwL81m3PBn4GeDNCB4="; + hash = "sha256-5luI46rSgB+N0OKQzSopEhCCEnwAhMabRit9MtsSSVA="; }; nativeBuildInputs = [ From 5cd7c7edf045b6a11f76c34fea34aa076120d84d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 23 May 2025 23:01:17 +0200 Subject: [PATCH 164/168] trivy: 0.61.1 -> 0.62.1 Diff: https://github.com/aquasecurity/trivy/compare/refs/tags/v0.61.1...refs/tags/v0.62.1 Changelog: https://github.com/aquasecurity/trivy/releases/tag/v0.62.1 --- pkgs/by-name/tr/trivy/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/tr/trivy/package.nix b/pkgs/by-name/tr/trivy/package.nix index d1cba3695ebd..e0e2459e3d49 100644 --- a/pkgs/by-name/tr/trivy/package.nix +++ b/pkgs/by-name/tr/trivy/package.nix @@ -11,19 +11,19 @@ buildGo124Module rec { pname = "trivy"; - version = "0.61.1"; + version = "0.62.1"; src = fetchFromGitHub { owner = "aquasecurity"; repo = "trivy"; tag = "v${version}"; - hash = "sha256-T9CjvRmqUAOpDLidYGDyE5L36yPJ3OfZGhvyVuZe5n8="; + hash = "sha256-STu/xkKC2Ci5HbUi+gdz3ZXB+xgpkh6bs/lB/pG2Uig="; }; # Hash mismatch on across Linux and Darwin proxyVendor = true; - vendorHash = "sha256-Qs+E/PtV5hQnfTwBWMkuLTjfWQLAo8ASFHEfFZ9H7AQ="; + vendorHash = "sha256-0/nM0mcTWF4OPIZvHd6fOPfYMMDw5d96acNuw4kM7Tw="; subPackages = [ "cmd/trivy" ]; From b4b2d7230a1055241df9a3ff6358bc684442004d Mon Sep 17 00:00:00 2001 From: Matteo Pacini Date: Fri, 23 May 2025 22:17:15 +0100 Subject: [PATCH 165/168] gdevelop: added update script --- pkgs/by-name/gd/gdevelop/darwin.nix | 8 ++++++- pkgs/by-name/gd/gdevelop/linux.nix | 2 ++ pkgs/by-name/gd/gdevelop/package.nix | 3 +++ pkgs/by-name/gd/gdevelop/update.sh | 33 ++++++++++++++++++++++++++++ 4 files changed, 45 insertions(+), 1 deletion(-) create mode 100755 pkgs/by-name/gd/gdevelop/update.sh diff --git a/pkgs/by-name/gd/gdevelop/darwin.nix b/pkgs/by-name/gd/gdevelop/darwin.nix index 9415ee4d4d37..3126b72c43a9 100644 --- a/pkgs/by-name/gd/gdevelop/darwin.nix +++ b/pkgs/by-name/gd/gdevelop/darwin.nix @@ -6,9 +6,15 @@ pname, version, meta, + passthru, }: stdenvNoCC.mkDerivation (finalAttrs: { - inherit pname version meta; + inherit + pname + version + meta + passthru + ; src = fetchurl { url = "https://github.com/4ian/GDevelop/releases/download/v${version}/GDevelop-5-${version}-universal-mac.zip"; diff --git a/pkgs/by-name/gd/gdevelop/linux.nix b/pkgs/by-name/gd/gdevelop/linux.nix index fcc51b141110..9817ec1b6b2c 100644 --- a/pkgs/by-name/gd/gdevelop/linux.nix +++ b/pkgs/by-name/gd/gdevelop/linux.nix @@ -6,6 +6,7 @@ version, pname, meta, + passthru, }: let src = @@ -29,6 +30,7 @@ appimageTools.wrapType2 { version src meta + passthru ; extraInstallCommands = '' diff --git a/pkgs/by-name/gd/gdevelop/package.nix b/pkgs/by-name/gd/gdevelop/package.nix index c8f07e752541..5ab41784a71e 100644 --- a/pkgs/by-name/gd/gdevelop/package.nix +++ b/pkgs/by-name/gd/gdevelop/package.nix @@ -20,6 +20,7 @@ let mainProgram = "gdevelop"; platforms = [ "x86_64-linux" ] ++ lib.platforms.darwin; }; + passthru.updateScript = ./update.sh; in if stdenv.hostPlatform.isDarwin then callPackage ./darwin.nix { @@ -27,6 +28,7 @@ if stdenv.hostPlatform.isDarwin then pname version meta + passthru ; } else @@ -35,5 +37,6 @@ else pname version meta + passthru ; } diff --git a/pkgs/by-name/gd/gdevelop/update.sh b/pkgs/by-name/gd/gdevelop/update.sh new file mode 100755 index 000000000000..ac91a41916db --- /dev/null +++ b/pkgs/by-name/gd/gdevelop/update.sh @@ -0,0 +1,33 @@ +#!/usr/bin/env nix-shell +#!nix-shell -i bash -p curl jq gnused + +set -euo pipefail + +cd "$(dirname "$0")" || exit 1 + +# Grab latest version from the GitHub repository +LATEST_VER="$(curl --fail -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} "https://api.github.com/repos/4ian/GDevelop/releases" | jq -r '.[0].tag_name' | sed 's/^v//')" +CURRENT_VER="$(grep -oP 'version = "\K[^"]+' package.nix)" + +if [[ "$LATEST_VER" == "$CURRENT_VER" ]]; then + echo "gdevelop is up-to-date" + exit 0 +fi + +echo "Updating gdevelop from $CURRENT_VER to $LATEST_VER" + +# Update the version +sed -i "s#version = \".*\";#version = \"$LATEST_VER\";#g" package.nix + +# Update hashes +# - Linux + +LINUX_HASH="$(nix-hash --to-sri --type sha256 "$(nix-prefetch-url --type sha256 "https://github.com/4ian/GDevelop/releases/download/v${LATEST_VER}/GDevelop-5-${LATEST_VER}.AppImage")")" +sed -i "s#hash = \".*\"#hash = \"$LINUX_HASH\"#g" linux.nix + +# - Darwin + +DARWIN_HASH="$(nix-hash --to-sri --type sha256 "$(nix-prefetch-url --type sha256 "https://github.com/4ian/GDevelop/releases/download/v${LATEST_VER}/GDevelop-5-${LATEST_VER}-universal-mac.zip")")" +sed -i "s#hash = \".*\"#hash = \"$DARWIN_HASH\"#g" darwin.nix + +echo "Updated gdevelop to $LATEST_VER" From b0f6bd05f44e90fb7ca7ad749d4c72b1f1e12c75 Mon Sep 17 00:00:00 2001 From: Matteo Pacini Date: Fri, 23 May 2025 22:18:34 +0100 Subject: [PATCH 166/168] gdevelop: 5.5.229 -> 5.5.231 --- pkgs/by-name/gd/gdevelop/darwin.nix | 2 +- pkgs/by-name/gd/gdevelop/linux.nix | 2 +- pkgs/by-name/gd/gdevelop/package.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gd/gdevelop/darwin.nix b/pkgs/by-name/gd/gdevelop/darwin.nix index 3126b72c43a9..b9be44d4d918 100644 --- a/pkgs/by-name/gd/gdevelop/darwin.nix +++ b/pkgs/by-name/gd/gdevelop/darwin.nix @@ -18,7 +18,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { src = fetchurl { url = "https://github.com/4ian/GDevelop/releases/download/v${version}/GDevelop-5-${version}-universal-mac.zip"; - hash = "sha256-0FT4JHGJKy6UapuV2tXKzWm0Esr6DPqu38PllUbUtrY="; + hash = "sha256-zvPum8vTEXS0LbwBpzGNmcsm3s7u2oAJBhGYvlV1PWw="; }; sourceRoot = "."; diff --git a/pkgs/by-name/gd/gdevelop/linux.nix b/pkgs/by-name/gd/gdevelop/linux.nix index 9817ec1b6b2c..8d32c18c0f52 100644 --- a/pkgs/by-name/gd/gdevelop/linux.nix +++ b/pkgs/by-name/gd/gdevelop/linux.nix @@ -13,7 +13,7 @@ let if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl { url = "https://github.com/4ian/GDevelop/releases/download/v${version}/GDevelop-5-${version}.AppImage"; - hash = "sha256-KV6gzPiu/45ibdzMG707vd10F6qLcm+afwJWa6WlywU="; + hash = "sha256-RjpiIy4NqZ9QCevwWR6cKLobbsFjneq+Vhr/t0JfvgU="; } else throw "${pname}-${version} is not supported on ${stdenv.hostPlatform.system}"; diff --git a/pkgs/by-name/gd/gdevelop/package.nix b/pkgs/by-name/gd/gdevelop/package.nix index 5ab41784a71e..57a9427762bc 100644 --- a/pkgs/by-name/gd/gdevelop/package.nix +++ b/pkgs/by-name/gd/gdevelop/package.nix @@ -5,7 +5,7 @@ ... }: let - version = "5.5.229"; + version = "5.5.231"; pname = "gdevelop"; meta = { description = "Graphical Game Development Studio"; From 15f3478472311eb028d8d6039875c35318a69156 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 23 May 2025 21:59:47 +0000 Subject: [PATCH 167/168] scip-go: 0.1.23 -> 0.1.24 --- pkgs/by-name/sc/scip-go/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sc/scip-go/package.nix b/pkgs/by-name/sc/scip-go/package.nix index 4b6403ba52b9..46d0e356b24a 100644 --- a/pkgs/by-name/sc/scip-go/package.nix +++ b/pkgs/by-name/sc/scip-go/package.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "scip-go"; - version = "0.1.23"; + version = "0.1.24"; src = fetchFromGitHub { owner = "sourcegraph"; repo = "scip-go"; rev = "v${version}"; - hash = "sha256-/3+vTz/W1mmI2zlVQLW4wPd66zK7HpFb8VaLFuUPRhk="; + hash = "sha256-qHGJ6yD3mnhHnu/KOShFb7Gu31jBPtKiEjAkaRlWJpE="; }; vendorHash = "sha256-E/1ubWGIx+sGC+owqw4nOkrwUFJfgTeqDNpH8HCwNhA="; From 854046f01764c9d114c8ab178d1487dfb08b38f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Sat, 24 May 2025 00:05:49 +0200 Subject: [PATCH 168/168] luminance-hdr: Fix build with current boost --- .../graphics/luminance-hdr/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/applications/graphics/luminance-hdr/default.nix b/pkgs/applications/graphics/luminance-hdr/default.nix index ad53e38ef7cf..12fbce05b962 100644 --- a/pkgs/applications/graphics/luminance-hdr/default.nix +++ b/pkgs/applications/graphics/luminance-hdr/default.nix @@ -35,6 +35,25 @@ stdenv.mkDerivation rec { url = "https://gitlab.archlinux.org/archlinux/packaging/packages/luminancehdr/-/raw/2e4a7321c7d20a52da104f4aa4dc76ac7224d94b/exiv2-0.28.patch"; hash = "sha256-Hj+lqAd5VuTjmip8Po7YiGOWWDxnu4IMXOiEFBukXpk="; }) + (fetchpatch { + name = "luminance-hdr-Fix-building-with-Boost-1.85.0.patch"; + url = "https://github.com/LuminanceHDR/LuminanceHDR/commit/33b364f76b0edca4352cf701c1557d0c0e796c4f.patch"; + hash = "sha256-jzyfKFmmzo6WUOUn33gr1g4MbSVpRfKLUIi49PSF5cg="; + }) + # Fix lots of errors of form: + # include/boost/math/tools/type_traits.hpp:208:12: error: 'is_final' has not been declared in 'std' + (fetchpatch { + name = "luminancehdr-fix-boost-1.87.0-compilation.patch"; + url = "https://gitlab.archlinux.org/archlinux/packaging/packages/luminancehdr/-/raw/d5fdbad3c11b6d414d842a7751e858f51292f544/luminancehdr-fix-boost-1.87.0-compilation.patch"; + hash = "sha256-bKJhENnOWNwKUUSrSUF9fS1Por1A7exYAeiuCa2fRJY="; + }) + # Fix error: + # /build/source/src/Libpfs/manip/gamma_levels.cpp:136:25: error: call of overloaded 'clamp(float, float, float)' is ambiguous + (fetchpatch { + name = "luminancehdr-clamp.patch"; + url = "https://gitlab.archlinux.org/archlinux/packaging/packages/luminancehdr/-/raw/d5fdbad3c11b6d414d842a7751e858f51292f544/clamp.patch"; + hash = "sha256-iAcZV1lFREPzjA9J3feSdhyTougvQA11I0IQRRYOmxY="; + }) ]; env.NIX_CFLAGS_COMPILE = "-I${ilmbase.dev}/include/OpenEXR";