Merge master into staging-nixos

This commit is contained in:
nixpkgs-ci[bot]
2026-02-13 12:12:54 +00:00
committed by GitHub
40 changed files with 331 additions and 325 deletions
@@ -45,11 +45,11 @@
"vendorHash": "sha256-6sVapd0vqL4xGLqTQS4zQIlnMA8HRmjufDi1lOgldlU="
},
"aliyun_alicloud": {
"hash": "sha256-NL2UmL4wLBbdT5DW7uGYOBQwPN0nQUP54gtFwc2PcB8=",
"hash": "sha256-XSXK7PH5MezbtQfrDh+z7nRUFsgiXwCtNbI4clbtozU=",
"homepage": "https://registry.terraform.io/providers/aliyun/alicloud",
"owner": "aliyun",
"repo": "terraform-provider-alicloud",
"rev": "v1.270.0",
"rev": "v1.271.0",
"spdx": "MPL-2.0",
"vendorHash": "sha256-Hvk2jckla1LcMankcdUTct8Kea0OznyxDxTJ+UrJHy0="
},
@@ -1,10 +1,10 @@
diff --git a/src/main-executable/main.c b/src/main-executable/main.c
index d7cfbfe8..c542c71a 100644
index 558bd994..2d341b4b 100644
--- a/src/main-executable/main.c
+++ b/src/main-executable/main.c
@@ -311,6 +311,7 @@ static void open(GtkApplication *app, GFile **files, gint nfiles, const gchar *h
} else {
dex_install_dir = "DIDN'T_GET_SO_PATH_WITH_dladdr_SUS"; // in case we print this as part of some other error, it should be clear what the real cause is
@@ -351,6 +351,7 @@ static void open(GtkApplication *app, GFile **files, gint nfiles, const gchar *h
fprintf(stderr, "error: couldn't find art install path\n");
exit(1);
}
+ dex_install_dir = "@out@/lib/java/dex";
@@ -1,16 +0,0 @@
diff --git a/src/main-executable/main.c b/src/main-executable/main.c
index 545da00f..2f87447d 100644
--- a/src/main-executable/main.c
+++ b/src/main-executable/main.c
@@ -390,7 +390,10 @@ static void open(GtkApplication *app, GFile **files, gint nfiles, const gchar *h
ret = stat(MICROG_APK_PATH_LOCAL, &dont_care);
errno_localdir = errno;
- if (!ret) {
+ char *env_microg = getenv("MICROG_APK_PATH");
+ if (env_microg && access(env_microg, F_OK) == 0) {
+ microg_apk = strdup(env_microg);
+ } else if (stat(MICROG_APK_PATH_LOCAL, &dont_care) == 0) {
microg_apk = strdup(MICROG_APK_PATH_LOCAL); // for running out of builddir; using strdup so we can always safely call free on this
} else {
char *microg_install_dir = malloc(strlen(dex_install_dir) + strlen(REL_MICROG_APK_INSTALL_PATH) + 1); // +1 for NULL
@@ -5,7 +5,6 @@
meson,
openjdk17,
lib,
glib,
pkg-config,
wayland-protocols,
wayland,
@@ -23,20 +22,19 @@
bionic-translation,
alsa-lib,
makeWrapper,
replaceVars,
nixosTests,
bintools,
}:
stdenv.mkDerivation {
pname = "android-translation-layer";
version = "0-unstable-2026-01-08";
version = "0-unstable-2026-01-19";
src = fetchFromGitLab {
owner = "android_translation_layer";
repo = "android_translation_layer";
rev = "b4d749b9b7f1a8620b976f03a2924d0661f7232f";
hash = "sha256-SeMxbqyD3MXDR4fHans7pdQSa/SLoWOl9QhnpH7CWCY=";
rev = "bfcfb696d83c9769e1d99d3cb0d7a5908fe3c767";
hash = "sha256-BTVduEJhKEOFhqoG0lgqlcg2x4k9RWABURj2nQECaek=";
};
patches = [
@@ -45,9 +43,6 @@ stdenv.mkDerivation {
# Patch custon Dex install dir
./configure-dex-install-dir.patch
# Patch atl to load microg apk from custom path
./configure-microg-path.patch
];
postPatch = ''
@@ -82,10 +77,6 @@ stdenv.mkDerivation {
webkitgtk_6_0
];
postInstall = ''
install -D $src/com.google.android.gms.apk $out/share/com.google.android.gms.apk
'';
postFixup = ''
wrapProgram $out/bin/android-translation-layer \
--prefix LD_LIBRARY_PATH : ${art-standalone}/lib/art \
@@ -94,8 +85,7 @@ stdenv.mkDerivation {
art-standalone # dex2oat
bintools # addr2line
]
} \
--set MICROG_APK_PATH "$out/share/com.google.android.gms.apk"
}
'';
passthru.tests = {
+2 -2
View File
@@ -13,13 +13,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "conmon";
version = "2.2.0";
version = "2.2.1";
src = fetchFromGitHub {
owner = "containers";
repo = "conmon";
tag = "v${finalAttrs.version}";
hash = "sha256-RVzjqTqw1NGAzXwiAKekByXA1aGgFrfwo3RtGKrfODk=";
hash = "sha256-YkPgpT+0cE7FCP/dcqnTy6oonPbXKiutFCGX5Lj1JB8=";
leaveDotGit = true;
postFetch = ''
cd $out
+3 -3
View File
@@ -10,13 +10,13 @@
buildGoModule (finalAttrs: {
pname = "databricks-cli";
version = "0.287.0";
version = "0.288.0";
src = fetchFromGitHub {
owner = "databricks";
repo = "cli";
rev = "v${finalAttrs.version}";
hash = "sha256-gUy1fhv/l/wmFUTSHcORkVu/ggbFv0Dc5KTjbPlrKPU=";
hash = "sha256-GBkeIY/uYiLA6CmKiMnMuGX2sPSyOmr9gZXZTe/AoQs=";
};
# Otherwise these tests fail asserting that the version is 0.0.0-dev
@@ -25,7 +25,7 @@ buildGoModule (finalAttrs: {
--replace-fail "cli/0.0.0-dev" "cli/${finalAttrs.version}"
'';
vendorHash = "sha256-TNUI2VQVKnxTiKQg9Bj3qDK2w3oOjO0rdrtTlFIhTzA=";
vendorHash = "sha256-YtXdGQzuzTHBrqRUk2ORacVNixdLt+jHxJ8zMxwlcmI=";
excludedPackages = [
"bundle/internal"
+1
View File
@@ -188,5 +188,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
lib.sourceTypes.binaryBytecode # actually, minified JS
lib.sourceTypes.fromSource
];
broken = true;
};
})
+3
View File
@@ -29,6 +29,9 @@ stdenv.mkDerivation (finalAttrs: {
"-DALLOWS_ONESHOT_TIMERS_WITH_TIMEOUT_ZERO=YES"
];
# fortify causes redefinition errors in the interposer
hardeningDisable = lib.optional stdenv.hostPlatform.isFreeBSD "fortify";
# https://github.com/jiixyj/epoll-shim/issues/41
# https://github.com/jiixyj/epoll-shim/pull/34
doCheck = !stdenv.hostPlatform.isDarwin;
+3 -3
View File
@@ -8,15 +8,15 @@
let
pname = "everest";
version = "6157";
version = "6170";
phome = "$out/lib/Celeste";
in
stdenvNoCC.mkDerivation {
inherit pname version;
src = fetchzip {
url = "https://github.com/EverestAPI/Everest/releases/download/stable-1.6157.0/main.zip";
url = "https://github.com/EverestAPI/Everest/releases/download/stable-1.6170.0/main.zip";
extension = "zip";
hash = "sha256-glGxQGp1zLg2wHeJBZUEbzTkCd3hU0GKBJo5SVuqXw4=";
hash = "sha256-tMovLxTHbBvqQ+e8GLaLIel2hSchuFXnOfnytgSKfsY=";
};
buildInputs = [
icu
+3 -3
View File
@@ -11,7 +11,7 @@
let
pname = "everest";
version = "6157";
version = "6170";
phome = "$out/lib/Celeste";
in
buildDotnetModule {
@@ -20,11 +20,11 @@ buildDotnetModule {
src = fetchFromGitHub {
owner = "EverestAPI";
repo = "Everest";
rev = "44350f94f150bfa9b0ffb3cf979eeaf6146cab34";
rev = "62ef4d0c36f433fa3a26502eabe6cda5ff205fbc";
fetchSubmodules = true;
# TODO: use leaveDotGit = true and modify external/MonoMod in postFetch to please SourceLink
# Microsoft.SourceLink.Common.targets(53,5): warning : Source control information is not available - the generated source link is empty.
hash = "sha256-2cbeheBQLcGBUS20CUMNuDgVHqgtWFRAObkTcRZ4xCk=";
hash = "sha256-OumeSvcWX3/zot7akcQea7jUQH0rL5/E0HzhITGPedA=";
};
nativeBuildInputs = [ autoPatchelfHook ];
+22 -8
View File
@@ -1,30 +1,44 @@
{
lib,
gitMinimal,
buildGoModule,
fetchFromGitHub,
writableTmpDirAsHomeHook,
}:
buildGoModule (finalAttrs: {
pname = "gitcs";
version = "1.2.0";
version = "1.2.1";
src = fetchFromGitHub {
owner = "knbr13";
owner = "hrtsegv";
repo = "gitcs";
rev = "v${finalAttrs.version}";
hash = "sha256-IyhVVRTKftZIzqMH5pBUMLPIk8bk0rVAxPKD6bABP68=";
tag = "v${finalAttrs.version}";
hash = "sha256-eAza/ni8MYrve0YCTkleOyOXPWmH4CEh8j5L+78wzsQ=";
};
vendorHash = "sha256-8yzPdVljnODOeI5yWh19BHsF4Pa9BWc49IwenMCVGZo=";
vendorHash = "sha256-bG0BaH8yYp8TUiK/7xvghB4T48LcBEvmF1uvY5eYkww=";
env.CGO_ENABLED = 0;
ldflags = [ "-s" ];
nativeCheckInputs = [
gitMinimal
writableTmpDirAsHomeHook
];
preCheck = ''
git config --global init.defaultBranch main
bash ./setup-test.sh
'';
meta = {
changelog = "https://github.com/hrtsegv/gitcs/releases/tag/v${finalAttrs.version}";
description = "Scan local git repositories and generate a visual contributions graph";
changelog = "https://github.com/knbr13/gitcs/releases/tag/v${finalAttrs.version}";
homepage = "https://github.com/knbr13/gitcs";
homepage = "https://github.com/hrtsegv/gitcs";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ phanirithvij ];
mainProgram = "gitcs";
maintainers = with lib.maintainers; [ phanirithvij ];
};
})
+2 -2
View File
@@ -39,11 +39,11 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "haproxy";
version = "3.3.2";
version = "3.3.3";
src = fetchurl {
url = "https://www.haproxy.org/download/${lib.versions.majorMinor finalAttrs.version}/src/haproxy-${finalAttrs.version}.tar.gz";
hash = "sha256-cpXLwmzOGUNElNVNmoEL6P3z01AUsu0yOLtIUaY3kss=";
hash = "sha256-DqLQ4VfN0q/z1gDCNl2t9Q5qKMQdPlLcztU84Qpm5TI=";
};
buildInputs = [
+3 -3
View File
@@ -19,14 +19,14 @@
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "home-manager";
version = "0-unstable-2026-01-20";
version = "0-unstable-2026-02-09";
src = fetchFromGitHub {
name = "home-manager-source";
owner = "nix-community";
repo = "home-manager";
rev = "9997de2f62d1875644f02ddf96cf485a4baecb6f";
hash = "sha256-i25tkhqjsfo0YKz8To/+gzazW1v4f8qUGqJQ8OLrkqE=";
rev = "6c4fdbe1ad198fac36c320fd45c5957324a80b8e";
hash = "sha256-mg5WZMIPGsFu9MxSrUcuJUPMbfMsF77el5yb/7rc10k=";
};
nativeBuildInputs = [
+11 -10
View File
@@ -1,12 +1,13 @@
{
"desktop_webview_window": "sha256-kkBPJvPVAChzk9eDL5xwZvonWobChW0C5dGQYTlQ8qA=",
"media_kit": "sha256-Az58j17UwEKYrxpJGlswhxMTEkO573xFsEijH0Od3v4=",
"media_kit_libs_android_video": "sha256-Az58j17UwEKYrxpJGlswhxMTEkO573xFsEijH0Od3v4=",
"media_kit_libs_ios_video": "sha256-Az58j17UwEKYrxpJGlswhxMTEkO573xFsEijH0Od3v4=",
"media_kit_libs_linux": "sha256-Az58j17UwEKYrxpJGlswhxMTEkO573xFsEijH0Od3v4=",
"media_kit_libs_macos_video": "sha256-Az58j17UwEKYrxpJGlswhxMTEkO573xFsEijH0Od3v4=",
"media_kit_libs_video": "sha256-Az58j17UwEKYrxpJGlswhxMTEkO573xFsEijH0Od3v4=",
"media_kit_libs_windows_video": "sha256-Az58j17UwEKYrxpJGlswhxMTEkO573xFsEijH0Od3v4=",
"media_kit_video": "sha256-Az58j17UwEKYrxpJGlswhxMTEkO573xFsEijH0Od3v4=",
"webview_windows": "sha256-pDnCv8tkeeaodMcNggHOyvPPkoCfd0hvopTg1Uvx0sM="
"desktop_webview_window": "sha256-4nTulOxPTV7sePokTY7xJTwulyucvf4JZKw860P8pbA=",
"media_kit": "sha256-lYTMz1sUqJXUaNo0ejfXwQsxjxFjuVpENTS1Ucasboc=",
"media_kit_libs_android_video": "sha256-lYTMz1sUqJXUaNo0ejfXwQsxjxFjuVpENTS1Ucasboc=",
"media_kit_libs_ios_video": "sha256-lYTMz1sUqJXUaNo0ejfXwQsxjxFjuVpENTS1Ucasboc=",
"media_kit_libs_linux": "sha256-lYTMz1sUqJXUaNo0ejfXwQsxjxFjuVpENTS1Ucasboc=",
"media_kit_libs_macos_video": "sha256-lYTMz1sUqJXUaNo0ejfXwQsxjxFjuVpENTS1Ucasboc=",
"media_kit_libs_ohos": "sha256-lYTMz1sUqJXUaNo0ejfXwQsxjxFjuVpENTS1Ucasboc=",
"media_kit_libs_video": "sha256-lYTMz1sUqJXUaNo0ejfXwQsxjxFjuVpENTS1Ucasboc=",
"media_kit_libs_windows_video": "sha256-lYTMz1sUqJXUaNo0ejfXwQsxjxFjuVpENTS1Ucasboc=",
"media_kit_video": "sha256-lYTMz1sUqJXUaNo0ejfXwQsxjxFjuVpENTS1Ucasboc=",
"webview_windows": "sha256-CFB1eh9eQaHIz1l3hW2GSn5mpja8dZRsS2Ln11CVAX4="
}
+2 -2
View File
@@ -18,13 +18,13 @@
}:
let
version = "1.9.6";
version = "2.0.2";
src = fetchFromGitHub {
owner = "Predidit";
repo = "Kazumi";
tag = version;
hash = "sha256-SNPG+k03RhNuveNaDSscPQeaqh0QXkpqZ2D1JvMtAYM=";
hash = "sha256-81CWJJr+vOF6WJbO/7sZuAkBfy7cNsUUTpxTUnaM0fg=";
};
in
flutter338.buildFlutterApplication {
+70 -69
View File
@@ -214,11 +214,11 @@
"dependency": "transitive",
"description": {
"name": "characters",
"sha256": "f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803",
"sha256": "faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "1.4.0"
"version": "1.4.1"
},
"checked_yaml": {
"dependency": "transitive",
@@ -364,8 +364,8 @@
"dependency": "direct main",
"description": {
"path": ".",
"ref": "5a07358",
"resolved-ref": "5a07358d2f52a0cd01a767ba6d998f5e32170426",
"ref": "297b39532c426263d2fa9fde4d70d2b5bdfc8059",
"resolved-ref": "297b39532c426263d2fa9fde4d70d2b5bdfc8059",
"url": "https://github.com/Predidit/linux_webview_window.git"
},
"source": "git",
@@ -507,6 +507,16 @@
"source": "hosted",
"version": "0.6.0"
},
"flutter_foreground_task": {
"dependency": "direct main",
"description": {
"name": "flutter_foreground_task",
"sha256": "48ea45056155a99fb30b15f14f4039a044d925bc85f381ed0b2d3b00a60b99de",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "9.2.0"
},
"flutter_inappwebview_android": {
"dependency": "direct main",
"description": {
@@ -889,28 +899,28 @@
"dependency": "transitive",
"description": {
"name": "matcher",
"sha256": "dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2",
"sha256": "12956d0ad8390bbcc63ca2e1469c0619946ccb52809807067a7020d57e647aa6",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "0.12.17"
"version": "0.12.18"
},
"material_color_utilities": {
"dependency": "direct main",
"description": {
"name": "material_color_utilities",
"sha256": "f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec",
"sha256": "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "0.11.1"
"version": "0.13.0"
},
"media_kit": {
"dependency": "direct main",
"description": {
"path": "media_kit",
"ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"resolved-ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"resolved-ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"url": "https://github.com/Predidit/media-kit.git"
},
"source": "git",
@@ -920,8 +930,8 @@
"dependency": "direct overridden",
"description": {
"path": "libs/android/media_kit_libs_android_video",
"ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"resolved-ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"resolved-ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"url": "https://github.com/Predidit/media-kit.git"
},
"source": "git",
@@ -931,8 +941,8 @@
"dependency": "direct overridden",
"description": {
"path": "libs/ios/media_kit_libs_ios_video",
"ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"resolved-ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"resolved-ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"url": "https://github.com/Predidit/media-kit.git"
},
"source": "git",
@@ -942,8 +952,8 @@
"dependency": "direct overridden",
"description": {
"path": "libs/linux/media_kit_libs_linux",
"ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"resolved-ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"resolved-ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"url": "https://github.com/Predidit/media-kit.git"
},
"source": "git",
@@ -953,19 +963,30 @@
"dependency": "direct overridden",
"description": {
"path": "libs/macos/media_kit_libs_macos_video",
"ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"resolved-ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"resolved-ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"url": "https://github.com/Predidit/media-kit.git"
},
"source": "git",
"version": "1.1.4"
},
"media_kit_libs_ohos": {
"dependency": "direct overridden",
"description": {
"path": "libs/ohos/media_kit_libs_ohos",
"ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"resolved-ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"url": "https://github.com/Predidit/media-kit.git"
},
"source": "git",
"version": "1.0.0"
},
"media_kit_libs_video": {
"dependency": "direct main",
"description": {
"path": "libs/universal/media_kit_libs_video",
"ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"resolved-ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"resolved-ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"url": "https://github.com/Predidit/media-kit.git"
},
"source": "git",
@@ -975,8 +996,8 @@
"dependency": "direct overridden",
"description": {
"path": "libs/windows/media_kit_libs_windows_video",
"ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"resolved-ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"resolved-ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"url": "https://github.com/Predidit/media-kit.git"
},
"source": "git",
@@ -986,8 +1007,8 @@
"dependency": "direct main",
"description": {
"path": "media_kit_video",
"ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"resolved-ref": "c04ddeead9ab468a3b5ddab0ee3789c77635841e",
"ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"resolved-ref": "190b4ce29d7edbec4243cba54119f047056ddb4f",
"url": "https://github.com/Predidit/media-kit.git"
},
"source": "git",
@@ -1373,6 +1394,16 @@
"source": "hosted",
"version": "2.1.2"
},
"screen_brightness_ohos": {
"dependency": "direct main",
"description": {
"name": "screen_brightness_ohos",
"sha256": "a93a263dcd39b5c56e589eb495bcd001ce65cdd96ff12ab1350683559d5c5bb7",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "2.1.2"
},
"screen_brightness_platform_interface": {
"dependency": "direct main",
"description": {
@@ -1713,11 +1744,11 @@
"dependency": "transitive",
"description": {
"name": "test_api",
"sha256": "ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55",
"sha256": "19a78f63e83d3a61f00826d09bc2f60e191bf3504183c001262be6ac75589fb8",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "0.7.7"
"version": "0.7.8"
},
"tray_manager": {
"dependency": "direct main",
@@ -1939,6 +1970,16 @@
"source": "hosted",
"version": "1.3.3"
},
"wakelock_plus_ohos": {
"dependency": "transitive",
"description": {
"name": "wakelock_plus_ohos",
"sha256": "b22af297411555b5ec0fe43ec2960cd5f019dd23b83853214ebe6dcc97b337bd",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "0.0.3"
},
"wakelock_plus_platform_interface": {
"dependency": "transitive",
"description": {
@@ -1999,52 +2040,12 @@
"source": "hosted",
"version": "1.2.2"
},
"webview_flutter": {
"dependency": "direct main",
"description": {
"name": "webview_flutter",
"sha256": "a3da219916aba44947d3a5478b1927876a09781174b5a2b67fa5be0555154bf9",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "4.13.1"
},
"webview_flutter_android": {
"dependency": "transitive",
"description": {
"name": "webview_flutter_android",
"sha256": "414174cacd339046a1a6dbf93cac62422194c676fed11119ccf228b81640e887",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "4.9.1"
},
"webview_flutter_platform_interface": {
"dependency": "transitive",
"description": {
"name": "webview_flutter_platform_interface",
"sha256": "63d26ee3aca7256a83ccb576a50272edd7cfc80573a4305caa98985feb493ee0",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "2.14.0"
},
"webview_flutter_wkwebview": {
"dependency": "transitive",
"description": {
"name": "webview_flutter_wkwebview",
"sha256": "fb46db8216131a3e55bcf44040ca808423539bc6732e7ed34fb6d8044e3d512f",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "3.23.0"
},
"webview_windows": {
"dependency": "direct main",
"description": {
"path": ".",
"ref": "9962cb9416f867d9ce9f409ccd6784e78c5f72ca",
"resolved-ref": "9962cb9416f867d9ce9f409ccd6784e78c5f72ca",
"ref": "9b9aabb2452e53d8d32bf59d571520fdfbaa7c21",
"resolved-ref": "9b9aabb2452e53d8d32bf59d571520fdfbaa7c21",
"url": "https://github.com/Predidit/flutter-webview-windows.git"
},
"source": "git",
@@ -2133,6 +2134,6 @@
},
"sdks": {
"dart": ">=3.9.0 <4.0.0",
"flutter": ">=3.38.9"
"flutter": ">=3.41.0"
}
}
+4 -4
View File
@@ -15,23 +15,23 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "kiro-cli";
version = "1.24.0";
version = "1.25.0";
src =
let
darwinDmg = fetchurl {
url = "https://desktop-release.q.us-east-1.amazonaws.com/${finalAttrs.version}/Kiro%20CLI.dmg";
hash = "sha256-V/akA/fcQZFULlBgGNibQRrhiBpGOr2s+jdPrAGOtnY=";
hash = "sha256-n9K3YVA+Chrm0i2iRoyZuk4Z8jE29ylVtK+Ym0HaXUg=";
};
in
{
x86_64-linux = fetchurl {
url = "https://desktop-release.q.us-east-1.amazonaws.com/${finalAttrs.version}/kirocli-x86_64-linux.tar.gz";
hash = "sha256-kDvM5OVKaB7RYmYySRNyMMMPllGPXuO27/E4/SN3onY=";
hash = "sha256-iL1+1BTgSdCOEP8x7GKxenyio0u2SF6Tj/7BjXPuo5Q=";
};
aarch64-linux = fetchurl {
url = "https://desktop-release.q.us-east-1.amazonaws.com/${finalAttrs.version}/kirocli-aarch64-linux.tar.gz";
hash = "sha256-gprO84khQoRPCeNqZny3TP2ndQgJrtRm0xcpSjzrYHI=";
hash = "sha256-PQd9Mc/I5V4jYkngQt/j3rufZTb6IeN7QdZs3/9pvMc=";
};
x86_64-darwin = darwinDmg;
aarch64-darwin = darwinDmg;
+2 -4
View File
@@ -22,8 +22,6 @@
gnome,
replaceVars,
bubblewrap,
jq,
moreutils,
common-updater-scripts,
_experimental-update-script-combinators,
buildPackages,
@@ -140,8 +138,8 @@ stdenv.mkDerivation (finalAttrs: {
(
replaceVars ./patch-vendor-hook.sh {
bwrap = "${bubblewrap}/bin/bwrap";
jq = "${jq}/bin/jq";
sponge = "${moreutils}/bin/sponge";
jq = "${buildPackages.jq}/bin/jq";
sponge = "${buildPackages.moreutils}/bin/sponge";
}
);
+2 -2
View File
@@ -15,13 +15,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "libphonenumber";
version = "9.0.23";
version = "9.0.24";
src = fetchFromGitHub {
owner = "google";
repo = "libphonenumber";
tag = "v${finalAttrs.version}";
hash = "sha256-HqoyICuGVR8qZNmNeHMbgzG77gUvhbQC0sfEA8v2o1c=";
hash = "sha256-FV1BMleEudTAFkfpzKUsIsyOQxTM8evK9436+YymGko=";
};
patches = [
+3 -3
View File
@@ -9,16 +9,16 @@
buildGoModule (finalAttrs: {
pname = "mani";
version = "0.31.2";
version = "0.32.0";
src = fetchFromGitHub {
owner = "alajmo";
repo = "mani";
tag = "v${finalAttrs.version}";
sha256 = "sha256-vQpwU+zU4xplN2Rp1v/uXIWgIYRb47s/HWREyHH226k=";
sha256 = "sha256-50TXLCwSaGD/xF5FsiPwASppRumxTMudDXOS0QmpM7I=";
};
vendorHash = "sha256-Ob3yD7UblWMRc7EyvEStrLStTT3wV/XssUPTos/olyI=";
vendorHash = "sha256-EtXy+OtKRlHqNb9VqP9bI+Giv5+9yI1fj6olCcQ6xDw=";
nativeBuildInputs = [
installShellFiles
+2 -2
View File
@@ -16,13 +16,13 @@ let
in
python.pkgs.buildPythonApplication (finalAttrs: {
pname = "peering-manager";
version = "1.10.1";
version = "1.10.3";
src = fetchFromGitHub {
owner = "peering-manager";
repo = "peering-manager";
tag = "v${finalAttrs.version}";
sha256 = "sha256-ByECaQ6NW1Su+k/j/bcKJqFf7bStdWZxOZn95GJEqBg=";
sha256 = "sha256-SRXQIbSCnIH1JUJTpF754Jx/B+xzgKhXfNGbhaMyCYQ=";
};
pyproject = false;
@@ -12,11 +12,11 @@
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "plasticscm-client-core-unwrapped";
version = "11.0.16.9890";
version = "11.0.16.9925";
src = fetchurl {
url = "https://www.plasticscm.com/plasticrepo/stable/debian/amd64/plasticscm-client-core_${finalAttrs.version}_amd64.deb";
hash = "sha256-J87bDtuAN+5sRLecdCXmaUlICTnCp25XMMIS+IQM/jQ=";
hash = "sha256-cysJFw10nTNh+WzDCFFN2DLVwhbeSnOJ5JGMNQEqd60=";
nativeBuildInputs = [ dpkg ];
downloadToTemp = true;
recursiveHash = true;
+3 -3
View File
@@ -14,16 +14,16 @@
buildNpmPackage (finalAttrs: {
pname = "qwen-code";
version = "0.9.1";
version = "0.10.1";
src = fetchFromGitHub {
owner = "QwenLM";
repo = "qwen-code";
tag = "v${finalAttrs.version}";
hash = "sha256-gMMJNlzh8wE8Y80d8BsuM79SMtrX27vNsRtR3w2Cw2I=";
hash = "sha256-5o0czo6NmygF78vFkIWjK/Ab5yRaYNZm5vOck355NJE=";
};
npmDepsHash = "sha256-dnS+/8dxHvqqyP4K8M9dwUoNKI7OcRQMlQtBlAO8G3A=";
npmDepsHash = "sha256-RwncE9D6MRXLCJUNjoQFxQ40y+Q9/LQUrqnGfzQCduU=";
# npm 11 incompatible with fetchNpmDeps
# https://github.com/NixOS/nixpkgs/issues/474535
+3 -3
View File
@@ -19,13 +19,13 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "renovate";
version = "42.83.1";
version = "43.4.0";
src = fetchFromGitHub {
owner = "renovatebot";
repo = "renovate";
tag = finalAttrs.version;
hash = "sha256-AUGtr1sePGfALOTdalCqos6Iqv8SQsC4BurAuyiwdN0=";
hash = "sha256-REJHbpVKvyD7dpp1smfW+uLwKFcoe8nOJs2KdYnCbeg=";
};
postPatch = ''
@@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: {
inherit (finalAttrs) pname version src;
pnpm = pnpm_10;
fetcherVersion = 2;
hash = "sha256-Gw5q7S867OpkANsf3m+Z+TV8FSQkmDXW48hRttUDtQ0=";
hash = "sha256-rzFbz5PONCXrqXN2WPxlP7O2pOwdFHvUmjIrIRXXiUQ=";
};
env.COREPACK_ENABLE_STRICT = 0;
+3 -3
View File
@@ -27,13 +27,13 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "ruffle";
version = "0.2.0-nightly-2026-02-02";
version = "0.2.0-nightly-2026-02-09";
src = fetchFromGitHub {
owner = "ruffle-rs";
repo = "ruffle";
tag = lib.strings.removePrefix "0.2.0-" finalAttrs.version;
hash = "sha256-oVo7AFCuaIxBfN2SsreanLUw/J+KuLi07Ds7iDD7ifw=";
hash = "sha256-SvrcnMwv2FAYK+cu67ZuZwVxe48jor1+dxBnciK+OZE=";
};
postPatch =
@@ -49,7 +49,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
"OpenH264Version(${major}, ${minor}, ${patch})"
'';
cargoHash = "sha256-KCiqKn4X2w68nMY8fZ+n/FyJb7m3iNILdzpzYWemKcg=";
cargoHash = "sha256-Olg8Z2HxfGAuhgHNN7QiFs28pTcqpOnflXeAqerIL+I=";
cargoBuildFlags = lib.optional withRuffleTools "--workspace";
env =
+2 -2
View File
@@ -19,13 +19,13 @@
buildGoModule rec {
pname = "skopeo";
version = "1.21.0";
version = "1.22.0";
src = fetchFromGitHub {
rev = "v${version}";
owner = "containers";
repo = "skopeo";
hash = "sha256-wL+++p89nZZA5gG6LIDjXIDvHxfGy/sKYNiTR0A38Ew=";
hash = "sha256-ERMOquT8ke/4urC6V0To+jJPeBICohHXL9YcCmGLST4=";
};
outputs = [
@@ -15,14 +15,14 @@
buildPythonPackage rec {
pname = "aioamazondevices";
version = "11.1.3";
version = "12.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "chemelli74";
repo = "aioamazondevices";
tag = "v${version}";
hash = "sha256-VkdA661cChsHwSKuOAx864xEjVGzJ35IzG0dOevrqAc=";
hash = "sha256-QLIn5pI6Mol+dPDGZpAnCfG3dMoxzKLJ6d77uyn8Cvk=";
};
build-system = [ poetry-core ];
@@ -12,13 +12,13 @@
buildPythonPackage rec {
pname = "azure-mgmt-resource-deploymentstacks";
version = "1.0.0b1";
version = "1.0.0";
pyproject = true;
src = fetchPypi {
pname = "azure_mgmt_resource_deploymentstacks";
inherit version;
hash = "sha256-Sbh25FwPW6uI7EfXxW6Ps0+9/P5bgxo6KiHoF/PZcy4=";
hash = "sha256-gI3N1xc36cpOfLhLxip079VFe2ptsOVgfNNshv1YLcc=";
};
build-system = [ setuptools ];
@@ -94,5 +94,6 @@ buildPythonPackage {
homepage = "https://pythonnet.github.io/clr-loader/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mdarocha ];
broken = true;
};
}
@@ -11,14 +11,14 @@
}:
buildPythonPackage rec {
pname = "fava-dashboards";
version = "2.0.0b4";
version = "2.0.0b5";
pyproject = true;
src = fetchFromGitHub {
owner = "andreasgerstmayr";
repo = "fava-dashboards";
tag = "v${version}";
hash = "sha256-A00zKQ1vOMCrq/7onyKjf3+rj55dEXd0JvZBY2Ee568=";
hash = "sha256-OoXNGj+05qjsgmHQ9c18ZcVE8jESDRZeONK9hzAmAQs=";
};
build-system = [
@@ -30,9 +30,9 @@
yarl,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "hass-nabucasa";
version = "1.12.0";
version = "1.14.0";
pyproject = true;
disabled = pythonOlder "3.13";
@@ -40,13 +40,13 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "nabucasa";
repo = "hass-nabucasa";
tag = version;
hash = "sha256-hBfO/dHsoMwUKcJf+6wGmS2+GWXauMu5FC527X3Ygow=";
tag = finalAttrs.version;
hash = "sha256-uTADu6IK8X+oQVvGdprmijR+MUJuWG9KMclq7zveC8o=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "0.0.0" "${version}"
--replace-fail "0.0.0" "${finalAttrs.version}"
'';
build-system = [ setuptools ];
@@ -91,8 +91,11 @@ buildPythonPackage rec {
meta = {
description = "Python module for the Home Assistant cloud integration";
homepage = "https://github.com/NabuCasa/hass-nabucasa";
changelog = "https://github.com/NabuCasa/hass-nabucasa/releases/tag/${src.tag}";
changelog = "https://github.com/NabuCasa/hass-nabucasa/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ Scriptkiddi ];
maintainers = with lib.maintainers; [
fab
Scriptkiddi
];
};
}
})
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "hass-splunk";
version = "0.1.2";
version = "0.1.4";
pyproject = true;
src = fetchFromGitHub {
owner = "Bre77";
repo = "hass_splunk";
tag = "v${version}";
hash = "sha256-bgF6gHAA57MiWdmpwilGa+l05/ETKdpyi2naVagkRlc=";
hash = "sha256-PvTmzMYlmZYjs9CnOPbjFneiZPgfDTlVqRtfl53uY78=";
};
build-system = [ setuptools ];
@@ -34,14 +34,14 @@
buildPythonPackage rec {
pname = "libretranslate";
version = "1.8.4";
version = "1.9.0";
pyproject = true;
src = fetchFromGitHub {
owner = "LibreTranslate";
repo = "LibreTranslate";
tag = "v${version}";
hash = "sha256-9neXSbupZFLhpkc4HUY4l0c/Vtfrf7ve9VMfaOCSA2A=";
hash = "sha256-bBs7gG42H4MNca5RUiedKNQkLjKpBm2SbPMRyh2gh6c=";
};
build-system = [
@@ -10,19 +10,19 @@
buildPythonPackage rec {
pname = "pcodec";
version = "1.0.0";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pcodec";
repo = "pcodec";
tag = "v${version}";
hash = "sha256-WE71Xbr0iUsnP5oqqMlvXzIhasQ7YQm6rB8hEA6FvnM=";
hash = "sha256-Ov3S4W8Yms+sMVInRrK7YO4jruyitvyoJW/b/4DX/sg=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-h40rlCd/qyf3hbvm8EdWo1hqAgiiwExmWNnKgU3iYEU=";
hash = "sha256-PygRP4qVKbart3KFl0Q3zAQi8JN5GFbsBg4SwgzDRfk=";
};
buildAndTestSubdir = "pco_python";
@@ -4,29 +4,29 @@
buildPythonPackage,
curio-compat,
fetchFromGitHub,
hatchling,
hypothesis,
pytest,
pytestCheckHook,
pythonOlder,
poetry-core,
trio,
trio-asyncio,
trio,
uvloop,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pytest-aio";
version = "2.0.0";
version = "2.1.7";
pyproject = true;
src = fetchFromGitHub {
owner = "klen";
repo = "pytest-aio";
rev = "43681bcfc6d2ee07bf9397a1b42d1ccfbb891deb";
hash = "sha256-IBtiy4pyXblIkYQunFO6HpBkCnBcEpTqcFtVELrULkk=";
tag = finalAttrs.version;
hash = "sha256-HvD7bBT8QX9Au5TON4yLit2AOLVSRGqdkkwenyqzhpo=";
};
build-system = [ poetry-core ];
build-system = [ hatchling ];
buildInputs = [ pytest ];
@@ -45,15 +45,15 @@ buildPythonPackage rec {
++ lib.optionals (pythonOlder "3.14") [
trio-asyncio
]
++ lib.concatAttrValues optional-dependencies;
++ lib.flatten (builtins.attrValues finalAttrs.passthru.optional-dependencies);
pythonImportsCheck = [ "pytest_aio" ];
meta = {
description = "Pytest plugin for aiohttp support";
homepage = "https://github.com/klen/pytest-aio";
changelog = "https://github.com/klen/pytest-aio/blob/${version}/CHANGELOG.md";
changelog = "https://github.com/klen/pytest-aio/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})
@@ -12,35 +12,35 @@
},
"38": {
"hashes": {
"aarch64-darwin": "5ef05a4719275c14f2fc9f77aef41421c3a7d6ccd8e909bbefda688a5b40f78f",
"aarch64-linux": "089681f662520b775bbaf17c9f1aac86861025cbe6ec3007d85ecc7b5662e21a",
"armv7l-linux": "d5ebe3191715d2dec081e0e9b09345d0e2c022481fece1207e8cb293acecf745",
"headers": "0dwvhcliyjcz6pq9znq81k3r60jfqk92mngf5yglx5j6fql5r4zm",
"x86_64-darwin": "72d298f9d8a723651d858406ca48c5aa5eef0308e5d9b3c7deef3ebf70c763b1",
"x86_64-linux": "e0a789a809527bd182cc307c46899c7d4fdaf07d7e79aef0dc5e613c80278b88"
"aarch64-darwin": "d8447f9e82b37a463bfb02a50dc98749fd7781de2cea2aa2f6796560256cacdd",
"aarch64-linux": "31bd0294a6f1ff00206905a642be0bd89bb595a69f7372cf6432015bcd0be324",
"armv7l-linux": "a416cde1e1b122dcb303d31255cc84bea3b2934a52ed258ae8a5051038ec3121",
"headers": "1q0d7yi1424vr7571qsh6xi50jvvjlqgjcgm7nisp2wrlzvn9sa7",
"x86_64-darwin": "e301ebbe17f2e446e31498d2cbc3f2bd59bd82eb0114d5cfc949a392f6e67f62",
"x86_64-linux": "35375a23173b3c4379118dc021b617a4cbc395bfbc6a4cb0e23a422df0da1147"
},
"version": "38.8.0"
"version": "38.8.1"
},
"39": {
"hashes": {
"aarch64-darwin": "3261e399827377703671140f04939b2a7d378f8d74bbc64a46277ce3332cc31e",
"aarch64-linux": "29123a371161d946fa932bf4be3381a55a99803ec922cf4ca8e699c31a30ba47",
"armv7l-linux": "093f5fff73d9a0964e3ed02d57ccc986195078de796dcf83c96079350d983cc9",
"aarch64-darwin": "618ada5c3ea7fdd3b2405d6e2b62c895d6531b9b0e12120e26a2e20e58d68e67",
"aarch64-linux": "c1ed7b797fa534931b36cdd6a69ea6ed5de351d5cc4086aa155a8ed92fb518ed",
"armv7l-linux": "0aefd0e66439ea4eb3db3e57742ca88988bb8d694eaa9c7d332c733c373ee32d",
"headers": "0awfmgrz47ga410rv83f0zppw4vrxxdd3ya4yzd2mmpkcxr80sr9",
"x86_64-darwin": "22c8e2c8f6c725c9d99112dae46184d5e357dc3b4b21ec65257083fd42719b3e",
"x86_64-linux": "c2be95ee3e7ffa26c674e4af4187dc4b610acb6ea62a869896f0882302923c81"
"x86_64-darwin": "5f51d106849b2afaa0a233f487485f0a484ac9dcb57c432feb6ae2731ed5cdfd",
"x86_64-linux": "1fddb169ed3a342ddaff1807c82c388966dbf4697349dd4902f2987152257337"
},
"version": "39.4.0"
"version": "39.5.2"
},
"40": {
"hashes": {
"aarch64-darwin": "f2866f3b84e0bdb7a3333f5401f8244ae14b34f5ce67ed45f259a3ac393b3a87",
"aarch64-linux": "4f07ff00445a707289d46f52dffd6faa504a4b60355ddb20df36ff8daa5cfc70",
"armv7l-linux": "953ab4b20661a1e6f7d2acadb5e57f67927ea5ad4cb8cf93d5a9634cca7f1f2f",
"headers": "0c8h4hcdxqhmjb4x4hf2hpz2lgkqq4nbqs3l4iypywg0qr8d65gn",
"x86_64-darwin": "84254c6a2dc1bff85c8c4de3572218101d68314c15c2892693a1992b193ae86b",
"x86_64-linux": "26f7675cc103f6ca0a1122d82f30bed7544c1a5d5507a6980992ae07ec876a12"
"aarch64-darwin": "4e74ea7df537403e81996b70808e0be72c03b8254155eb4936ba7bedf9b766c5",
"aarch64-linux": "07639078d1eecafc261329e2e5f6b45b63932bf363d45b5cde962c6311659b8b",
"armv7l-linux": "41ace9862c8e22385f96424d6c2600c5c7cbdb08505c9ae95f593a09c830cee6",
"headers": "0p4v176ws6cchkrb1575gx4ppa4scbj5s59cm64akqchn44lald3",
"x86_64-darwin": "ce38c8c13fc25f99bf967cc95da8e0014f25da0b4eb443f4bf24c6c5c9a201e6",
"x86_64-linux": "abb936793a7e86d49c876c142bfa3e19fe28fee0bc7a7721d2bc72f91cbc4e36"
},
"version": "40.1.0"
"version": "40.3.0"
}
}
@@ -12,35 +12,35 @@
},
"38": {
"hashes": {
"aarch64-darwin": "f08c0a63e75d10cf117d9893d85862f8c962ab026806c0e2d3bafbe5e635d8b3",
"aarch64-linux": "2ca72361584f6e8e00a438cd54a77c2c84e197e2561e788afb03ba3a08056c12",
"armv7l-linux": "d4213af3c0b6218b2d59fe7bac56e81359e09e770c6425d2820c65b75201e9e1",
"headers": "0dwvhcliyjcz6pq9znq81k3r60jfqk92mngf5yglx5j6fql5r4zm",
"x86_64-darwin": "023ccf116daffead9035873261fb445a5acb160fed107dd8950ad69e5dc6f133",
"x86_64-linux": "c4e34d1be7c6f7287ff2ee2752d82444a35e62565f4e25092e1a4bdc85651014"
"aarch64-darwin": "c3d5503fe39a4917e7b584fe6792da4ef4ee77ee069ea27b0a713ec27578ae6f",
"aarch64-linux": "35ca80cc6a4f31c81c7a78d78d08ad279dc21159b980cdc92db280c3127778d7",
"armv7l-linux": "8b52966cdfa3fa55871ea531c38b6ed87e23dbee90035684fe8e232176ca8e41",
"headers": "1q0d7yi1424vr7571qsh6xi50jvvjlqgjcgm7nisp2wrlzvn9sa7",
"x86_64-darwin": "338fbc799b8b7bee203ad7ff06a20be6a6e88b71f1045a8b29605e80aa5939e7",
"x86_64-linux": "353a0e60ec2ad62ee3f5d1a53dc2055a35c730b87b4cbf1dc8094490dfc4c15f"
},
"version": "38.8.0"
"version": "38.8.1"
},
"39": {
"hashes": {
"aarch64-darwin": "b41e3ef0759e2bb24ef468dbb7300a9b07fc2d212053ee358d7b274fc206844f",
"aarch64-linux": "54e9024b394ec614d210c129ea6d9c9ec205e67f8fa8426652329be273a4ca3d",
"armv7l-linux": "10379333f8c5a17c09103c5ce802606b471d6e287a0d849aa29ec1c11ad278ed",
"aarch64-darwin": "a87acdd1cb412151f71c25154dccdf26744b80471acbef03dd20cfea2e0bd2d1",
"aarch64-linux": "f18c47c5544f158eaa1a3705bbcaab7a879c1829926310ebfd876749393ed2a0",
"armv7l-linux": "74435311880444074e0fedd2a52ecdf9a18f13689e9da700f6fae4c5b553e4d5",
"headers": "0awfmgrz47ga410rv83f0zppw4vrxxdd3ya4yzd2mmpkcxr80sr9",
"x86_64-darwin": "6c81bbca1adf2d08ec545fabb99e0b96b8bc6ea0f59bbb798f034cee9618216a",
"x86_64-linux": "05c54bf453331acc2d8d6b5b8854ed262fcdfda0223cd6651c9f137d62eee3b0"
"x86_64-darwin": "2181b4bfb4c9e543013bd08e0d6d1e1b3b80a7d99e1589a7e75089760d1d46c2",
"x86_64-linux": "dd240f331c4ae2dd8e83aa517bc17a107f0747d62bb4321901c18ad4e48d8ea6"
},
"version": "39.4.0"
"version": "39.5.2"
},
"40": {
"hashes": {
"aarch64-darwin": "09aae73536472087120cd3fbdff7229dab9f36167e5999075a4f2d7af2eeda89",
"aarch64-linux": "59f6245921d3efd4b5c9f36db69d1fb3ca7eb3a66de6264abde3a4a5cf6d509c",
"armv7l-linux": "d90cdce84b28d4934413b4ee64d0f46430740676173ad87ed3db2c7692f6654e",
"headers": "0c8h4hcdxqhmjb4x4hf2hpz2lgkqq4nbqs3l4iypywg0qr8d65gn",
"x86_64-darwin": "24623db1ff05f35bac2f702f9338596a2db6b1f742e9dfaa35772eecb9ba5b39",
"x86_64-linux": "d211f0e3693f52bb1e9495075bb363a527e19e1207ba4b384e233a32d6681443"
"aarch64-darwin": "e04593e9bfade7a56aabd028fa0da4859bfa8e615d5506d8f3f83cfe4c8b9524",
"aarch64-linux": "be6f08da6125ad7b46080915a95474aecced83406410898cc9243bbd00d050c0",
"armv7l-linux": "1762ed68e2048b5a7d70823b8daa1bf6d2968695657aeaf46eeaa199668918fd",
"headers": "0p4v176ws6cchkrb1575gx4ppa4scbj5s59cm64akqchn44lald3",
"x86_64-darwin": "90aaa614c48e274488022b138f82934649aedfd5efa2115582434e64a6932ae1",
"x86_64-linux": "a146e851bc01d5a6ea4257fd7bec9673224b119addb2d44e9ae3c335a30f1764"
},
"version": "40.1.0"
"version": "40.3.0"
}
}
+25 -25
View File
@@ -56,10 +56,10 @@
},
"src/electron": {
"args": {
"hash": "sha256-ptOkmAyByN8nR5/CpFJBLPeNI7zVbz0pqfQcWwbh3R4=",
"hash": "sha256-+bkx3vLrCFOeI1ybSOU/f+7rkcbxrr+kEz07XNCVrmw=",
"owner": "electron",
"repo": "electron",
"tag": "v38.8.0"
"tag": "v38.8.1"
},
"fetcher": "fetchFromGitHub"
},
@@ -1318,10 +1318,10 @@
"fetcher": "fetchFromGitiles"
}
},
"electron_yarn_hash": "sha256-JCd5N7Wf17TfVyhEw4JA225vdqXeyMKgADYzOagGYd8=",
"electron_yarn_hash": "sha256-hchGMv49A9KHPLIQ2v8356yg80GCwtnRcU6T/zLSLgI=",
"modules": "139",
"node": "22.22.0",
"version": "38.8.0"
"version": "38.8.1"
},
"39": {
"chrome": "142.0.7444.265",
@@ -1380,10 +1380,10 @@
},
"src/electron": {
"args": {
"hash": "sha256-5sOTpnllc27NEZIomvx5oosxKtc3oBm+Dk3r5PZ3f4c=",
"hash": "sha256-TmAZl/OLw00zZpPspdBUE7NasViq9IllCSM1NJu5UdU=",
"owner": "electron",
"repo": "electron",
"tag": "v39.4.0"
"tag": "v39.5.2"
},
"fetcher": "fetchFromGitHub"
},
@@ -2666,13 +2666,13 @@
"fetcher": "fetchFromGitiles"
}
},
"electron_yarn_hash": "sha256-DyXKL0dXU+9K7EyR4WSsq49w3BOk/hHE6lW2uYS3AAw=",
"electron_yarn_hash": "sha256-LJAAF+YlVgsUAmu37VSNPSRoUi9nc2pCsj0t6f7wWmQ=",
"modules": "140",
"node": "22.22.0",
"version": "39.4.0"
"version": "39.5.2"
},
"40": {
"chrome": "144.0.7559.96",
"chrome": "144.0.7559.134",
"chromium": {
"deps": {
"gn": {
@@ -2681,15 +2681,15 @@
"version": "0-unstable-2025-12-01"
}
},
"version": "144.0.7559.96"
"version": "144.0.7559.134"
},
"chromium_npm_hash": "sha256-13sgV/5BD7QvDLBAEmoLN5vongw+S5v5znvZcctxhWc=",
"deps": {
"src": {
"args": {
"hash": "sha256-2K/lRbMxLhH1RImERMiwQrDrJPWSAI6ffAFG0rJmJaY=",
"hash": "sha256-XHmPaX372RoYLxNWadbKg0COV8Kksy9WkPQQHXvCZI4=",
"postFetch": "rm -rf $(find $out/third_party/blink/web_tests ! -name BUILD.gn -mindepth 1 -maxdepth 1); rm -r $out/content/test/data; rm -rf $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ",
"tag": "144.0.7559.96",
"tag": "144.0.7559.134",
"url": "https://chromium.googlesource.com/chromium/src.git"
},
"fetcher": "fetchFromGitiles"
@@ -2728,10 +2728,10 @@
},
"src/electron": {
"args": {
"hash": "sha256-Nt/PmsLg3dfEQYUX9ifzWznvseJq4fSo8jOwMq/euEo=",
"hash": "sha256-3iB13q4r4YXseVZivCBhZQj8wMMe/93cOR7BJefMdQs=",
"owner": "electron",
"repo": "electron",
"tag": "v40.1.0"
"tag": "v40.3.0"
},
"fetcher": "fetchFromGitHub"
},
@@ -3025,8 +3025,8 @@
},
"src/third_party/devtools-frontend/src": {
"args": {
"hash": "sha256-vLkWH/EiDHxl/dz4soKybQF1hgud/7MlnDhVPicYJGY=",
"rev": "a3064782146fc247c488d44c1ad3496b29d55ec4",
"hash": "sha256-6osYh+ijcH7LEg1v7xGEf0zC36HZGMfqXP9Eq6g5WdU=",
"rev": "f130475580017f9f87502343dbcfc0c76dccefe8",
"url": "https://chromium.googlesource.com/devtools/devtools-frontend"
},
"fetcher": "fetchFromGitiles"
@@ -3065,10 +3065,10 @@
},
"src/third_party/electron_node": {
"args": {
"hash": "sha256-nDAuDTYmOeziiIm203x2NgTZl+3YRy0B3K4Fx8D+yNU=",
"hash": "sha256-gfSrqDkXDdfFFzA5xCKeu8twCuFto78rEcBl2fheBBs=",
"owner": "nodejs",
"repo": "node",
"tag": "v24.11.1"
"tag": "v24.13.0"
},
"fetcher": "fetchFromGitHub"
},
@@ -3443,8 +3443,8 @@
},
"src/third_party/libvpx/source/libvpx": {
"args": {
"hash": "sha256-PdRZyXurQkw3UWOH1MkkuzggJkt9Uxq472L4LkxaYtw=",
"rev": "9a7674e1a83d1261a49776c8794b87c9bccc85d7",
"hash": "sha256-5+TQo0qRaH1QnAgdQkJcGkKWYGPJO3hVIqqGEtHpwqk=",
"rev": "14cd170a941f88e6fb145ebb873a3c8f87645834",
"url": "https://chromium.googlesource.com/webm/libvpx.git"
},
"fetcher": "fetchFromGitiles"
@@ -4007,16 +4007,16 @@
},
"src/v8": {
"args": {
"hash": "sha256-gBzwGvl/tqj4Z6acdLN326I80kBLEk+Nn8oN6D193o4=",
"rev": "6c2c296f23a5487ccb2536cf7c90d01f35d03077",
"hash": "sha256-7jQ1WrY2+8s0tDjl4qzaZz/xdWrePiVvuJDI00YLd9k=",
"rev": "0f9ccaeb4a88dbff7a7c86e998ceea7d6f947950",
"url": "https://chromium.googlesource.com/v8/v8.git"
},
"fetcher": "fetchFromGitiles"
}
},
"electron_yarn_hash": "sha256-XfBaGCIERh5B/xq7H5zcB9moB75X1QVR53i3LCpa0D8=",
"electron_yarn_hash": "sha256-Mbi58CdqXaWIdRqdRXay9pSGpLaCQnwJjhv8cBJDUnE=",
"modules": "143",
"node": "24.11.1",
"version": "40.1.0"
"node": "24.13.0",
"version": "40.3.0"
}
}
+2 -2
View File
@@ -11,13 +11,13 @@
buildDotnetModule rec {
pname = "jackett";
version = "0.24.831";
version = "0.24.1066";
src = fetchFromGitHub {
owner = "jackett";
repo = "jackett";
tag = "v${version}";
hash = "sha256-3URSLCL+e+70/DE6rknxSKORuByzB1jZlvNOgORzfHU=";
hash = "sha256-o0Mu5+m6+2iVRIJ8OIlUDNUY9h3qKn1hOsSA1JYd71o=";
};
projectFile = "src/Jackett.Server/Jackett.Server.csproj";
+68 -58
View File
@@ -61,23 +61,23 @@
},
{
"pname": "Microsoft.AspNetCore.Cryptography.Internal",
"version": "9.0.11",
"hash": "sha256-h3qnUI9Yg2Wyf3jZFnbvNbuiGw/cK3n+I2Y8L8nfnHo="
"version": "9.0.12",
"hash": "sha256-S3YTzCZTqmHo0AtGbfzYySXnCmRFHF6KYNM+wuQlW6Q="
},
{
"pname": "Microsoft.AspNetCore.DataProtection",
"version": "9.0.11",
"hash": "sha256-Zo5CZ9SQdv4omvQxWqSZdlveCfQOse46y2ht4Ad1f8s="
"version": "9.0.12",
"hash": "sha256-fdj7Ogh+Eq4DpoZQGuvU49tRbG7pbr5l/n1xHv91aMk="
},
{
"pname": "Microsoft.AspNetCore.DataProtection.Abstractions",
"version": "9.0.11",
"hash": "sha256-KjzXNx7tJgDRjP6SUEGBuZzhLKnZv1x9pQ6WMm8ylEE="
"version": "9.0.12",
"hash": "sha256-ik1OxpjTA6YvHY03C46ehfwCzctU3uxO77MpZN8j1s0="
},
{
"pname": "Microsoft.AspNetCore.Http",
"version": "2.3.0",
"hash": "sha256-ubPGvFwMjXbydY1gzo/m31pWq5/SsS/tGRtOotHFfBU="
"version": "2.3.9",
"hash": "sha256-XuOH9M6qd6XFz15TnWNnNCVd567B5BCb0wfl0Xoz5g4="
},
{
"pname": "Microsoft.AspNetCore.Http.Abstractions",
@@ -91,19 +91,24 @@
},
{
"pname": "Microsoft.AspNetCore.JsonPatch",
"version": "9.0.11",
"hash": "sha256-MeQFvZt5GIEs9IQILjDwC72GlgyIMUH52nxsJbKCNdo="
"version": "9.0.12",
"hash": "sha256-4PeCo0P5yp92lbowpTwYQoEucaQnheCjapcjDYYCa+Y="
},
{
"pname": "Microsoft.AspNetCore.Mvc.NewtonsoftJson",
"version": "9.0.11",
"hash": "sha256-+WtuaFv9zL11yQpFDYv87BeXulu63UkqvH+cNJa3EY4="
"version": "9.0.12",
"hash": "sha256-Va5Z9cGbYzWHVAeHDTALM9+nuauZXkLfFW5RBjssyjo="
},
{
"pname": "Microsoft.AspNetCore.WebUtilities",
"version": "2.3.0",
"hash": "sha256-oJMEP44Q9ClhbyZUPtSb9jqQyJJ/dD4DHElRvkYpIOo="
},
{
"pname": "Microsoft.AspNetCore.WebUtilities",
"version": "2.3.9",
"hash": "sha256-B5iIW0O5K11GELwd7dc96SYTmFkvINhdodBDcL14+/w="
},
{
"pname": "Microsoft.Bcl.AsyncInterfaces",
"version": "6.0.0",
@@ -121,8 +126,8 @@
},
{
"pname": "Microsoft.Bcl.AsyncInterfaces",
"version": "9.0.11",
"hash": "sha256-j9ApMWa0U++opbSgoag6SeryghKqRH5PmyEeuyBUaoU="
"version": "9.0.12",
"hash": "sha256-kWcD+J3uXlKaZLkG1n2QMFnKEWi5gSyJzcNWvc68knY="
},
{
"pname": "Microsoft.Bcl.TimeProvider",
@@ -141,8 +146,8 @@
},
{
"pname": "Microsoft.Extensions.Configuration",
"version": "9.0.11",
"hash": "sha256-Luot2bOpYOV0uM+ISdOCvtN1/IjZarj6aBWT+OdjT/o="
"version": "9.0.12",
"hash": "sha256-VFkOp9M/u1NbuxQH2nc7/JyC3LvlIxk4CHJ6tuG7BDc="
},
{
"pname": "Microsoft.Extensions.Configuration.Abstractions",
@@ -151,8 +156,8 @@
},
{
"pname": "Microsoft.Extensions.Configuration.Abstractions",
"version": "9.0.11",
"hash": "sha256-bBvR5XeJpoim/4JUsDtp+z7GU2vx37NwjAjeXLc+Ycg="
"version": "9.0.12",
"hash": "sha256-FYIGDiv0aVApHCpoVQs4o9sWeFZhXb3XfK/zWXYlH1g="
},
{
"pname": "Microsoft.Extensions.DependencyInjection",
@@ -166,23 +171,23 @@
},
{
"pname": "Microsoft.Extensions.DependencyInjection.Abstractions",
"version": "9.0.11",
"hash": "sha256-7ybl+oJ7NkkOX3Ns7KAgaHy3CP2LvI1VBTJ9WbMIYC0="
"version": "9.0.12",
"hash": "sha256-EZt7Vjl0dll6GZOVCTfC2cYxAG5IWtJHeOGlDJ7rHTg="
},
{
"pname": "Microsoft.Extensions.Diagnostics.Abstractions",
"version": "9.0.11",
"hash": "sha256-kbhGSCfsrhh+aCU2l2bUpC6/r2UL42khFVp8mMJdZtQ="
"version": "9.0.12",
"hash": "sha256-4pejR//BfEIbjcH5+galqF7tMXlolBgVp7sHy4E2zoE="
},
{
"pname": "Microsoft.Extensions.FileProviders.Abstractions",
"version": "9.0.11",
"hash": "sha256-xBLCCrTgcXEu97+8QXAhpurtKntak5xkc4kpDLXGLFQ="
"version": "9.0.12",
"hash": "sha256-P6WRAZSAUbO6YlC6eB9BWGPqej3hJWwfALODqNvGebA="
},
{
"pname": "Microsoft.Extensions.Hosting.Abstractions",
"version": "9.0.11",
"hash": "sha256-hSaL6InhpqvG/KDwXascN3Tphn+QR7I+4dlfpgjoMBo="
"version": "9.0.12",
"hash": "sha256-t/7rol1scjtqAVk/MtEvItvI+Gl6ngRKgdsGDs5yFZY="
},
{
"pname": "Microsoft.Extensions.Logging",
@@ -196,8 +201,8 @@
},
{
"pname": "Microsoft.Extensions.Logging.Abstractions",
"version": "9.0.11",
"hash": "sha256-hk1zL4wTkoix+681q7MC/B9VLThibu4L01Pj6ZtNy14="
"version": "9.0.12",
"hash": "sha256-pl+0ezSkx+GND5pH2gtvhdMiCPodD1YvNP7wl4gDQt4="
},
{
"pname": "Microsoft.Extensions.ObjectPool",
@@ -216,8 +221,8 @@
},
{
"pname": "Microsoft.Extensions.Options",
"version": "9.0.11",
"hash": "sha256-e7yi+sje07SUUxbZ6+ZjvcFMgUtpLZ8vz1KdPinF310="
"version": "9.0.12",
"hash": "sha256-WuEpn1zvPWdS+TTu30s1Z3KMUt+4GpdwRpzqrhtfd60="
},
{
"pname": "Microsoft.Extensions.Primitives",
@@ -226,13 +231,13 @@
},
{
"pname": "Microsoft.Extensions.Primitives",
"version": "9.0.11",
"hash": "sha256-T1t0dsPVxP0TrmXfPXsA+wZKgS7TecZXvRS261G+KY8="
"version": "9.0.12",
"hash": "sha256-aJBpI8kad6jm0Pno4WQWJZnbM2E3zayjfa8gvoMXI7I="
},
{
"pname": "Microsoft.Net.Http.Headers",
"version": "2.3.0",
"hash": "sha256-XY3OyhKTzUVbmMnegp0IxApg8cw97RD9eXC2XenrOqE="
"version": "2.3.8",
"hash": "sha256-IgcqzFtv8NAmnb8uvr+lEKHWSehpK3eciCIZ/lcFyaI="
},
{
"pname": "Microsoft.NET.Test.Sdk",
@@ -376,18 +381,23 @@
},
{
"pname": "NLog",
"version": "5.4.0",
"hash": "sha256-l2R0UHHCL02KPMC96e62AL2ONFD0PAty619y9UnD25A="
"version": "5.5.0",
"hash": "sha256-WkuKGo3iEqJruQuRZXMksqIbAQjZbFIANcm0zZr/fYE="
},
{
"pname": "NLog",
"version": "5.5.1",
"hash": "sha256-cLAAj2QWWhbfh4vgnE/fLq5Rpr3uTe4ufnVWTig0nEo="
},
{
"pname": "NLog.Extensions.Logging",
"version": "5.4.0",
"hash": "sha256-9pVBguAKnjmbtKM3wBVBEzovXkoEXgqvB4IhiayAkVo="
"version": "5.5.0",
"hash": "sha256-gdhJP9V5lDHgRS8gpFDgW6CkkLKo+tACCqPvERLaZ68="
},
{
"pname": "NLog.Web.AspNetCore",
"version": "5.4.0",
"hash": "sha256-tDCsOqYNVg+dNBk85HjNgbZuQwMgGPIdsMqoPhhPROk="
"version": "5.5.0",
"hash": "sha256-1n8wzNMBIVoLjDlFUyNO7lsunz6E8LlBHpokDFrLjA8="
},
{
"pname": "NUnit",
@@ -706,8 +716,8 @@
},
{
"pname": "System.Diagnostics.EventLog",
"version": "9.0.11",
"hash": "sha256-uC7YVy03iVJnizcaCxCN6Vnx9rv/1gG3lq3cFXaSsUY="
"version": "9.0.12",
"hash": "sha256-FQ0W9uvdNwW4zYPm8r436a6ThZ8fXNTuE2ByxWKhXrY="
},
{
"pname": "System.Diagnostics.Tools",
@@ -776,8 +786,8 @@
},
{
"pname": "System.IO.Pipelines",
"version": "9.0.11",
"hash": "sha256-ogNiml57jAA8ktmOTRfVU5Y81KHKPZVoCNKtB47B7FM="
"version": "9.0.12",
"hash": "sha256-QB79/Sv076sbhuam8IDCKsfYcZsGZtz53Hrg1XmJZFU="
},
{
"pname": "System.Linq",
@@ -961,8 +971,8 @@
},
{
"pname": "System.Security.Cryptography.Pkcs",
"version": "9.0.11",
"hash": "sha256-3DwZRsewv5TpdSkc5RDbBAuqimFVHKH8nZy1QYS8EGU="
"version": "9.0.12",
"hash": "sha256-x49sviUYfmI9m0Gm+a4vkTmHn5smecqwObmJ/mBh+xo="
},
{
"pname": "System.Security.Cryptography.Primitives",
@@ -976,8 +986,8 @@
},
{
"pname": "System.Security.Cryptography.ProtectedData",
"version": "9.0.11",
"hash": "sha256-YM/qsal5EpLC/qWI+wf5kHgtTcBSuOthngiu9ai+1Lw="
"version": "9.0.12",
"hash": "sha256-QPL673ebdqDAXM+oB2GPhIV+y+/mMHd1mok55b+JEhE="
},
{
"pname": "System.Security.Cryptography.X509Certificates",
@@ -986,8 +996,8 @@
},
{
"pname": "System.Security.Cryptography.Xml",
"version": "9.0.11",
"hash": "sha256-N62TCLyn4NCIr/Zi56J+n862QIlTz/IbjXcJXOaaPh4="
"version": "9.0.12",
"hash": "sha256-iJiA1aqqv2cQmkZieje+AyVsLXtf78YjMvmO7tGiwlk="
},
{
"pname": "System.Security.Principal.Windows",
@@ -1001,8 +1011,8 @@
},
{
"pname": "System.ServiceProcess.ServiceController",
"version": "9.0.11",
"hash": "sha256-Z4ux6RuYsleD+DRQSybH/DGFmHD53IHwSe86+ddyYDc="
"version": "9.0.12",
"hash": "sha256-3emvlVHvUKQqX+pf50UonnrDghzq32C/Zh96Wcpg5nU="
},
{
"pname": "System.Text.Encoding",
@@ -1011,8 +1021,8 @@
},
{
"pname": "System.Text.Encoding.CodePages",
"version": "9.0.11",
"hash": "sha256-hZZPd8HwHIywSIKukN3V50dIN46EI4Xe5paRjUiCRB4="
"version": "9.0.12",
"hash": "sha256-RUOuo/Ti9orjkJsFbonY0CN/AstQKVBBQwn70W2G158="
},
{
"pname": "System.Text.Encoding.Extensions",
@@ -1026,13 +1036,13 @@
},
{
"pname": "System.Text.Encodings.Web",
"version": "9.0.11",
"hash": "sha256-NuD3LzSL1u02UC+tepeCEgfq5rPXpGdYJCWY0zyCeVk="
"version": "9.0.12",
"hash": "sha256-hcHdVe/scC1VgitjHdx/zsG/YwZ3rMgRMCPAwsvG79s="
},
{
"pname": "System.Text.Json",
"version": "9.0.11",
"hash": "sha256-eufG191lCpSBB471mXeOU/Osp1WAUZvCq+DoB+q9dyU="
"version": "9.0.12",
"hash": "sha256-1YwyeEaYl6sju0ViAeAAdVqfE2uv8yZp/0gWf/30p2Q="
},
{
"pname": "System.Text.RegularExpressions",