Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub d2abfd7e 790f8b09

+29 -27
+4 -4
pkgs/by-name/au/autobrr/package.nix
··· 13 13 14 14 let 15 15 pname = "autobrr"; 16 - version = "1.61.0"; 16 + version = "1.62.0"; 17 17 src = fetchFromGitHub { 18 18 owner = "autobrr"; 19 19 repo = "autobrr"; 20 20 tag = "v${version}"; 21 - hash = "sha256-qFLHszkdpnOZj7dalwSPX/NSlAtLcVpIcEXxbtE8lLU="; 21 + hash = "sha256-lygDs92WiIzHYgYqel2nseWcXgBFEQV+i5tC0NYpYUE="; 22 22 }; 23 23 24 24 autobrr-web = stdenvNoCC.mkDerivation { ··· 40 40 src 41 41 sourceRoot 42 42 ; 43 - hash = "sha256-ifzkLoXTdySr3uTy4Mc4WvDA6yd0RBVXbTtozHequsA="; 43 + hash = "sha256-XFGxutHWk1RHnrN//WVTr4RyARIkygdG2C1Af5W0dBc="; 44 44 }; 45 45 46 46 postBuild = '' ··· 60 60 src 61 61 ; 62 62 63 - vendorHash = "sha256-bbIoNW32b6N6t/MvCfSN/BdoHN0rZIMqWsJHL2amKPE="; 63 + vendorHash = "sha256-/MOP06po885vg1C6j+let8UC710j68oP+L3j9oEU0Lw="; 64 64 65 65 preBuild = '' 66 66 cp -r ${autobrr-web}/* web/dist
+3 -3
pkgs/by-name/do/double-entry-generator/package.nix
··· 6 6 }: 7 7 buildGoModule rec { 8 8 pname = "double-entry-generator"; 9 - version = "2.8.0"; 9 + version = "2.9.0"; 10 10 src = fetchFromGitHub { 11 11 owner = "deb-sig"; 12 12 repo = "double-entry-generator"; 13 - hash = "sha256-DsNcQacbdBzOMK9mVuuK8yz9RXqykYLhXE5YSFYmipA="; 13 + hash = "sha256-GscpYNS30npOVZzRmbuCQvJzamgaK4riBiSngBg7szc="; 14 14 rev = "v${version}"; 15 15 }; 16 16 17 - vendorHash = "sha256-/QMt8zPvHM9znUc0+iUC82bOUJoBmH+shJ9D7AHiQ1E="; 17 + vendorHash = "sha256-NoWUaawApdTSWGRul9mpOxgRZWTE7LTz3pJgwU2NWVU="; 18 18 19 19 excludedPackages = [ "hack" ]; 20 20
+2 -2
pkgs/by-name/en/enzyme/package.nix
··· 7 7 }: 8 8 llvmPackages.stdenv.mkDerivation rec { 9 9 pname = "enzyme"; 10 - version = "0.0.175"; 10 + version = "0.0.176"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "EnzymeAD"; 14 14 repo = "Enzyme"; 15 15 rev = "v${version}"; 16 - hash = "sha256-6uqPnkJeyn4R1mc/vVSVIl6sarSo41drKe9tTqWDJU0="; 16 + hash = "sha256-/c8gxv9i4oHp3/7z6c1lU1lWPsPK27xkjjNjrPwieZE="; 17 17 }; 18 18 19 19 postPatch = ''
+2 -2
pkgs/by-name/op/open-policy-agent/package.nix
··· 14 14 15 15 buildGoModule (finalAttrs: { 16 16 pname = "open-policy-agent"; 17 - version = "1.4.0"; 17 + version = "1.4.2"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "open-policy-agent"; 21 21 repo = "opa"; 22 22 tag = "v${finalAttrs.version}"; 23 - hash = "sha256-oFtF/Uze9X1aaDzQXpZwbRXi11VnTTkkosfSSIeIxcc="; 23 + hash = "sha256-4FRNTB24JWyF3Zuhx3T6LjNs83+wDh4gmE9rh3cu/Vk="; 24 24 }; 25 25 26 26 vendorHash = null;
+5
pkgs/development/compilers/llvm/common/libunwind/default.nix
··· 12 12 python3, 13 13 libcxx, 14 14 enableShared ? !stdenv.hostPlatform.isStatic, 15 + doFakeLibgcc ? stdenv.hostPlatform.useLLVM, 15 16 devExtraCmakeFlags ? [ ], 16 17 getVersionFile, 17 18 }: ··· 105 106 '' 106 107 + lib.optionalString (enableShared && stdenv.hostPlatform.isWindows) '' 107 108 ln -s $out/lib/libunwind.dll.a $out/lib/libunwind_shared.dll.a 109 + '' 110 + + lib.optionalString (doFakeLibgcc) '' 111 + ln -s $out/lib/libunwind.so $out/lib/libgcc_s.so 112 + ln -s $out/lib/libunwind.so $out/lib/libgcc_s.so.1 108 113 ''; 109 114 110 115 meta = llvm_meta // {
+5 -13
pkgs/development/python-modules/rstcheck/default.nix
··· 1 1 { 2 2 lib, 3 - stdenv, 4 3 buildPythonPackage, 5 - docutils, 6 4 fetchFromGitHub, 7 5 setuptools, 8 6 setuptools-scm, 9 - pydantic, 10 7 pytestCheckHook, 11 8 pythonOlder, 12 9 rstcheck-core, 10 + sphinx, 13 11 typer, 14 - types-docutils, 15 12 }: 16 13 17 14 buildPythonPackage rec { ··· 34 31 ]; 35 32 36 33 dependencies = [ 37 - docutils 38 34 rstcheck-core 39 - types-docutils 40 - pydantic 41 35 typer 42 36 ]; 43 37 44 - nativeCheckInputs = [ pytestCheckHook ]; 38 + optional-dependencies = { 39 + sphinx = [ sphinx ]; 40 + }; 45 41 46 - disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ 47 - # Disabled until https://github.com/rstcheck/rstcheck-core/issues/19 is resolved. 48 - "test_error_without_config_file_macos" 49 - "test_file_1_is_bad_without_config_macos" 50 - ]; 42 + nativeCheckInputs = [ pytestCheckHook ]; 51 43 52 44 pythonImportsCheck = [ "rstcheck" ]; 53 45
+1
pkgs/os-specific/darwin/apple-source-releases/libsbuf/package.nix
··· 81 81 lib.licenses.bsd2 82 82 lib.licenses.bsd3 83 83 ]; 84 + platforms = lib.platforms.darwin; 84 85 }; 85 86 })
+3 -3
pkgs/servers/home-assistant/custom-lovelace-modules/universal-remote-card/package.nix
··· 6 6 7 7 buildNpmPackage rec { 8 8 pname = "universal-remote-card"; 9 - version = "4.4.3"; 9 + version = "4.4.4"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Nerwyn"; 13 13 repo = "android-tv-card"; 14 14 rev = version; 15 - hash = "sha256-LhA4yDodTyeKxSr3BAYea/gohrHdsQIb2+MVixOBjC8="; 15 + hash = "sha256-+FBNhN1sW4tjwWxGXAnKIPDR5gZtKoekh/N8mioXo+8="; 16 16 }; 17 17 18 18 patches = [ ./dont-call-git.patch ]; 19 19 20 - npmDepsHash = "sha256-/0bxOC9e8+mfWAyj/yPXVGS4OAdFNU5H3x8z9aS0LBA="; 20 + npmDepsHash = "sha256-KzxcEItSMTAeARjYRCmGjEIGuMLrdFjs+3AfcLr6AHc="; 21 21 22 22 installPhase = '' 23 23 runHook preInstall
+4
pkgs/top-level/all-packages.nix
··· 4362 4362 4363 4363 rstcheck = with python3Packages; toPythonApplication rstcheck; 4364 4364 4365 + rstcheckWithSphinx = rstcheck.overridePythonAttrs (oldAttrs: { 4366 + dependencies = oldAttrs.dependencies ++ oldAttrs.optional-dependencies.sphinx; 4367 + }); 4368 + 4365 4369 rtmpdump_gnutls = rtmpdump.override { 4366 4370 gnutlsSupport = true; 4367 4371 opensslSupport = false;