lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
1337f7ba 5c74f3f8

+99 -56
+9 -9
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 167 167 "vendorHash": null 168 168 }, 169 169 "bitbucket": { 170 - "hash": "sha256-EsupdOP2aWLGeQrtuTyPg4ppM/j0WT0q/UV60oK732Y=", 170 + "hash": "sha256-4uwMg2DXd7T4WqdfwcZHtsPMTTCqrwSngh01DYW5yko=", 171 171 "homepage": "https://registry.terraform.io/providers/DrFaust92/bitbucket", 172 172 "owner": "DrFaust92", 173 173 "repo": "terraform-provider-bitbucket", 174 - "rev": "v2.29.2", 174 + "rev": "v2.30.0", 175 175 "spdx": "MPL-2.0", 176 176 "vendorHash": "sha256-foMmZbNPLww1MN4UZwuynBDgt2w40aMqVINRw//Q0d0=" 177 177 }, ··· 816 816 "vendorHash": "sha256-LRIfxQGwG988HE5fftGl6JmBG7tTknvmgpm4Fu1NbWI=" 817 817 }, 818 818 "oci": { 819 - "hash": "sha256-EewM1/7zzmJ5KL+/KqstFg6rQT8YpvMULScYeD2ClUQ=", 819 + "hash": "sha256-L8y00f+57hndpVevliJ2kNqpGeNR2Jv/FHbqkAUIRMI=", 820 820 "homepage": "https://registry.terraform.io/providers/oracle/oci", 821 821 "owner": "oracle", 822 822 "repo": "terraform-provider-oci", 823 - "rev": "v4.104.2", 823 + "rev": "v4.105.0", 824 824 "spdx": "MPL-2.0", 825 825 "vendorHash": null 826 826 }, ··· 861 861 "vendorHash": "sha256-hHwFm+gSMjN4YQEFd/dd50G0uZsxzqi21tHDf4mPBLY=" 862 862 }, 863 863 "opentelekomcloud": { 864 - "hash": "sha256-brODSqSwZXy3B/F5jqPz1h5UJ2hNncG7tIpICJjoBW4=", 864 + "hash": "sha256-D2RPpG1RE+bM7rVvmItczpRExMXK0RaKfJsnifvXRTs=", 865 865 "homepage": "https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud", 866 866 "owner": "opentelekomcloud", 867 867 "repo": "terraform-provider-opentelekomcloud", 868 - "rev": "v1.32.2", 868 + "rev": "v1.32.3", 869 869 "spdx": "MPL-2.0", 870 - "vendorHash": "sha256-p01ZIAt8cUv/UklRnMu+TTmfEw8jdde9C4nUJrhA7wE=" 870 + "vendorHash": "sha256-49ViIxICpvWgpv+uY0NTDvXGJthjH6aT38COfS+AOaQ=" 871 871 }, 872 872 "opsgenie": { 873 - "hash": "sha256-6lbJyBppfRqqmYpPgyzUTvnvHPSWjE3SJULqliZ2iUI=", 873 + "hash": "sha256-NMaTTZQyEJ0vb+eDNTGRozTrme78Vo+/GuIR43AeDbU=", 874 874 "homepage": "https://registry.terraform.io/providers/opsgenie/opsgenie", 875 875 "owner": "opsgenie", 876 876 "repo": "terraform-provider-opsgenie", 877 - "rev": "v0.6.18", 877 + "rev": "v0.6.19", 878 878 "spdx": "MPL-2.0", 879 879 "vendorHash": null 880 880 },
+2 -2
pkgs/applications/networking/flexget/default.nix
··· 5 5 6 6 python3Packages.buildPythonApplication rec { 7 7 pname = "flexget"; 8 - version = "3.5.18"; 8 + version = "3.5.21"; 9 9 format = "pyproject"; 10 10 11 11 # Fetch from GitHub in order to use `requirements.in` ··· 13 13 owner = "flexget"; 14 14 repo = "flexget"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-gMOpKXLUihiNcpHF6045D1ZcYwTgyjaVIFpDRCln5rI="; 16 + hash = "sha256-VVZvr0h98bWJW9FNFr3/pw7pSqF62hCnr6iv9xSzXf8="; 17 17 }; 18 18 19 19 postPatch = ''
+4 -5
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 1 1 { callPackage }: builtins.mapAttrs (pname: attrs: callPackage ./generic.nix (attrs // { inherit pname; })) { 2 2 signal-desktop = { 3 3 dir = "Signal"; 4 - version = "6.2.0"; 5 - hash = "sha256-auOcMlwKPj5rsnlhK34sYe4JxlHCjb3e2ye8Cs12Qtc="; 4 + version = "6.3.0"; 5 + hash = "sha256-Mg7znebHiREC9QI5T7bWT4QXL8biDVBp0Z6Jgeid/gY="; 6 6 }; 7 7 signal-desktop-beta = { 8 8 dir = "Signal Beta"; 9 - ringrtcPrefix = "@signalapp/"; 10 - version = "6.3.0-beta.1"; 11 - hash = "sha256-cYJWhnyiWULnIZvI2/k1koLCd2zrL4CVMohcnSZa/TY="; 9 + version = "6.4.0-beta.1"; 10 + hash = "sha256-GR7RWFT20i5dx6XYrp73inCOQ2Hj2UjSXf5jmjfDKMU="; 12 11 }; 13 12 }
+1 -2
pkgs/applications/networking/instant-messengers/signal-desktop/generic.nix
··· 1 1 { pname 2 2 , dir 3 - , ringrtcPrefix ? "" 4 3 , version 5 4 , hash 6 5 , stdenv ··· 161 160 --replace "/opt/${dir}/${pname}" $out/bin/${pname} 162 161 163 162 autoPatchelf --no-recurse -- "$out/lib/${dir}/" 164 - patchelf --add-needed ${libpulseaudio}/lib/libpulse.so "$out/lib/${dir}/resources/app.asar.unpacked/node_modules/${ringrtcPrefix}ringrtc/build/linux/libringrtc-x64.node" 163 + patchelf --add-needed ${libpulseaudio}/lib/libpulse.so "$out/lib/${dir}/resources/app.asar.unpacked/node_modules/@signalapp/ringrtc/build/linux/libringrtc-x64.node" 165 164 ''; 166 165 167 166 # Tests if the application launches and waits for "Link your phone to Signal Desktop":
+28
pkgs/development/libraries/exprtk/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "exprtk"; 5 + version = "unstable-2021-12-31"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ArashPartow"; 9 + repo = "exprtk"; 10 + rev = "806c519c91fd08ba4fa19380dbf3f6e42de9e2d1"; 11 + hash = "sha256-5/k+y3gNJeggfwXmtAVqmaiV+BXX+WKtWwZWcQSrQDM="; 12 + }; 13 + 14 + dontBuild = true; 15 + 16 + installPhase = '' 17 + runHook preInstall 18 + install -Dm644 exprtk.hpp "$out/include/exprtk.hpp" 19 + runHook postInstall 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "The C++ Mathematical Expression Toolkit Library"; 24 + homepage = "https://www.partow.net/programming/exprtk/index.html"; 25 + license = licenses.mit; 26 + maintainers = with maintainers; [ anselmschueler ]; 27 + }; 28 + }
+1 -1
pkgs/development/libraries/libdatrie/default.nix
··· 22 22 installShellFiles 23 23 ]; 24 24 25 - buildInputs = [ libiconv ]; 25 + buildInputs = lib.optional stdenv.isDarwin libiconv; 26 26 27 27 preAutoreconf = let 28 28 reports = "https://github.com/tlwg/libdatrie/issues";
+2 -2
pkgs/development/python-modules/azure-eventhub/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "azure-eventhub"; 12 - version = "5.10.1"; 12 + version = "5.11.1"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.6"; ··· 17 17 src = fetchPypi { 18 18 inherit pname version; 19 19 extension = "zip"; 20 - sha256 = "sha256-LV+o7dMVCFIQfq9d2wYY34LghIP5FN06zDpUPtkELFQ="; 20 + sha256 = "sha256-Z1tekAHjO2kVe5g/MpB1U9m38pBQ8J03+pDZdJgzcgE="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+11 -4
pkgs/development/python-modules/flask-security-too/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , pythonOlder 4 5 5 6 # extras: babel 6 7 , babel ··· 45 46 46 47 buildPythonPackage rec { 47 48 pname = "flask-security-too"; 48 - version = "5.0.2"; 49 + version = "5.1.0"; 50 + format = "setuptools"; 51 + 52 + disabled = pythonOlder "3.7"; 49 53 50 54 src = fetchPypi { 51 55 pname = "Flask-Security-Too"; 52 56 inherit version; 53 - sha256 = "sha256-Nv7g2l0bPSEcrydFU7d1NHjCCJl8Ykq7hOu6QmHeZcI="; 57 + hash = "sha256-nSo7fdY9tiE7PnhosXh1eBfVa5l6a43XNvp6vKvrq5Y="; 54 58 }; 55 59 56 60 propagatedBuildInputs = [ ··· 103 107 ++ passthru.optional-dependencies.mfa; 104 108 105 109 106 - pythonImportsCheck = [ "flask_security" ]; 110 + pythonImportsCheck = [ 111 + "flask_security" 112 + ]; 107 113 108 114 meta = with lib; { 109 - homepage = "https://pypi.org/project/Flask-Security-Too/"; 115 + changelog = "https://github.com/Flask-Middleware/flask-security/blob/${version}/CHANGES.rst"; 116 + homepage = "https://github.com/Flask-Middleware/flask-security"; 110 117 description = "Simple security for Flask apps (fork)"; 111 118 license = licenses.mit; 112 119 maintainers = with maintainers; [ gador ];
+2 -2
pkgs/development/python-modules/google-cloud-dlp/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "google-cloud-dlp"; 16 - version = "3.11.0"; 16 + version = "3.11.1"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.7"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-5zysTKqmzRAiePBwLkbUhiAG91sKwao2BCTOBnVHlYg="; 23 + hash = "sha256-TwVY6/4TSY8cPj3y/A7+cxpyVJ9+lPg+vAKNhfBNfqI="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-firestore/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "google-cloud-firestore"; 18 - version = "2.9.0"; 18 + version = "2.9.1"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.7"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - hash = "sha256-gEgTYUsaac9dJIxCZJU/axjwiNqttUQiL6UskhzjsJg="; 25 + hash = "sha256-WxUiufi+rXBPuSBcC/Ktp0tEkcaA457o0WexweS9MMI="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-redis/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-redis"; 14 - version = "2.11.0"; 14 + version = "2.11.1"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-dWpsiitG58iCw8z8Hd10eAXXfRRBlq90m0cs1YjeMqE="; 21 + hash = "sha256-dRavwtaU+dpRZkO49Q0Btmh2Mi/zUWbvZbImrfUkrAM="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-speech/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "google-cloud-speech"; 16 - version = "2.17.0"; 16 + version = "2.17.1"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.7"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-Lb2oV2r7CE1qc5iaxzGpIm3xZKpsORx1Nofkjno6xNs="; 23 + hash = "sha256-gWcYMY9Ztm5d9CkQXPtAZaDgrKwU90EZBdznuWWDp9o="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-translate/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "google-cloud-translate"; 17 - version = "3.10.0"; 17 + version = "3.10.1"; 18 18 format = "setuptools"; 19 19 20 20 disabled = pythonOlder "3.7"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-SdhAsksalGug0eW9rVlAGpEGIUjreKkFIj3v9x54G6I="; 24 + hash = "sha256-++1k8lhJfJ7e/oK//IyYx9W/RacQa/1RwdrhyvCYWEM="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-vision/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-vision"; 15 - version = "3.3.0"; 15 + version = "3.3.1"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-Rj6yR/8V65wOILVSlLEi6+IRgNk3t/t7grVaHc8sRJY="; 22 + hash = "sha256-G7v09CA1pJ2OSL7gBzYvfRGrjPjQElxnyeUvP2vpFJQ="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/googlemaps/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "googlemaps"; 13 - version = "4.7.3"; 13 + version = "4.9.0"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.5"; ··· 19 19 owner = "googlemaps"; 20 20 repo = "google-maps-services-python"; 21 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-SwNUoC4x1Z+cqBvuBtDZNZMDcs4XwLj7LWntZ4gZ+vo="; 22 + hash = "sha256-Ji9GDVQdDmneOcjrmfaG84HJNCz4igHJQmnwk9xiUlM="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+3 -2
pkgs/development/python-modules/panflute/default.nix
··· 8 8 9 9 buildPythonPackage rec{ 10 10 pname = "panflute"; 11 - version = "2.2.3"; 11 + version = "2.3.0"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-AJMz+gt8Wa45aFZSLm15RjiiJlJnkWC4Lobk8o8Pu8Y="; 18 + hash = "sha256-zv2d/EjM2XMqU9tXYQcB0igG2jl6ipflzI3AcLVYZco="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ ··· 30 30 meta = with lib; { 31 31 description = "Pythonic alternative to John MacFarlane's pandocfilters, with extra helper functions"; 32 32 homepage = "http://scorreia.com/software/panflute"; 33 + changelog = "https://github.com/sergiocorreia/panflute/releases/tag/${version}"; 33 34 license = licenses.bsd3; 34 35 maintainers = with maintainers; [ synthetica ]; 35 36 };
+6 -3
pkgs/development/tools/rust/probe-run/default.nix
··· 3 3 , rustPlatform 4 4 , fetchCrate 5 5 , pkg-config 6 + , DarwinTools 6 7 , libusb1 7 8 , libiconv 8 9 , AppKit ··· 11 12 12 13 rustPlatform.buildRustPackage rec { 13 14 pname = "probe-run"; 14 - version = "0.3.5"; 15 + version = "0.3.6"; 15 16 16 17 src = fetchCrate { 17 18 inherit pname version; 18 - sha256 = "sha256-C9JxQVsS1Bv9euQ7l+p5aehiGLKdrUMcno9z8UoZKR4="; 19 + sha256 = "sha256-HYFVdj1kASu+VKnDJA35zblPsgUeYC9YVlS84Hkx1Sk="; 19 20 }; 20 21 21 - cargoSha256 = "sha256-kmdRwAq6EOniGHC7JhB6Iov1E4hbQbxHlOcc6gUDOhY="; 22 + cargoSha256 = "sha256-nhs9qNFd1GK70sL5sPPeMazuPUP67epHayXnw3aXTfk="; 22 23 23 24 nativeBuildInputs = [ 24 25 pkg-config 26 + ] ++ lib.optionals stdenv.isDarwin [ 27 + DarwinTools 25 28 ]; 26 29 27 30 buildInputs = [
+2 -4
pkgs/games/ddnet/default.nix
··· 30 30 31 31 stdenv.mkDerivation rec { 32 32 pname = "ddnet"; 33 - version = "16.4"; 33 + version = "16.5"; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "ddnet"; 37 37 repo = pname; 38 38 rev = version; 39 - sha256 = "sha256-8t4UKytYmkELEMQ06jIj7C9cdOc5L22AnigwkGBzx20="; 39 + sha256 = "sha256-fHe72ew+qoSyOqXU9Hs9EyecrYDjEqTm+Ii9Zja9up4="; 40 40 }; 41 41 42 42 nativeBuildInputs = [ cmake ninja pkg-config ]; ··· 63 63 ] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa OpenGL Security ]; 64 64 65 65 cmakeFlags = [ 66 - "-DCMAKE_BUILD_TYPE=Release" 67 66 "-DAUTOUPDATE=OFF" 68 - "-GNinja" 69 67 ]; 70 68 71 69 postPatch = ''
+5 -5
pkgs/os-specific/linux/zfs/default.nix
··· 226 226 latestCompatibleLinuxPackages = linuxPackages_6_1; 227 227 228 228 # this package should point to the latest release. 229 - version = "2.1.8"; 229 + version = "2.1.9"; 230 230 231 - sha256 = "sha256-/+23SEtywa7b1dgvQNmEGrfqXzM1mlk00TSpuiCkQOk="; 231 + sha256 = "RT2ijcXhdw5rbz1niDjrqg6G/uOjyrJiTlS4qijiWqc="; 232 232 }; 233 233 234 234 zfsUnstable = common { ··· 240 240 # IMPORTANT: Always use a tagged release candidate or commits from the 241 241 # zfs-<version>-staging branch, because this is tested by the OpenZFS 242 242 # maintainers. 243 - version = "2.1.9-staging-2023-01-19"; 244 - rev = "04b02785b67f9b976c43643dd52ce6cdbc22e11e"; 243 + version = "2.1.10-staging-2023-01-24"; 244 + rev = "92e0d9d183ce6752cd52f7277c8321d81df9ffee"; 245 245 246 - sha256 = "sha256-/+23SEtywa7b1dgvQNmEGrfqXzM1mlk00TSpuiCkQOk="; 246 + sha256 = "RT2ijcXhdw5rbz1niDjrqg6G/uOjyrJiTlS4qijiWqc="; 247 247 248 248 isUnstable = true; 249 249 };
+8 -3
pkgs/servers/sql/postgresql/ext/timescaledb.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake, postgresql, openssl, libkrb5 }: 2 2 3 3 # # To enable on NixOS: 4 - # config.services.postgresql = { 5 - # extraPlugins = [ pkgs.timescaledb ]; 6 - # extraConfig = "shared_preload_libraries = 'timescaledb'"; 4 + # config.services.postgresql = let 5 + # # The postgresql pkgs has to be taken from the 6 + # # postgresql package used, so the extensions 7 + # # are built for the correct postgresql version. 8 + # postgresqlPackages = config.services.postgresql.package.pkgs; 9 + # in { 10 + # extraPlugins = with postgresqlPackages; [ timescaledb ]; 11 + # settings.shared_preload_libraries = "timescaledb"; 7 12 # } 8 13 9 14 stdenv.mkDerivation rec {
+3
pkgs/top-level/all-packages.nix
··· 529 529 530 530 probe-run = callPackage ../development/tools/rust/probe-run { 531 531 inherit (darwin.apple_sdk.frameworks) AppKit IOKit; 532 + inherit (darwin) DarwinTools; 532 533 }; 533 534 534 535 mix2nix = callPackage ../development/tools/mix2nix { }; ··· 19403 19404 exiv2 = callPackage ../development/libraries/exiv2 { }; 19404 19405 19405 19406 expat = callPackage ../development/libraries/expat { }; 19407 + 19408 + exprtk = callPackage ../development/libraries/exprtk { }; 19406 19409 19407 19410 eventlog = callPackage ../development/libraries/eventlog { }; 19408 19411