Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 08f03671 6884210d

+140 -64
+1 -1
nixos/modules/services/misc/gitea.nix
··· 585 585 Restart = "always"; 586 586 # Runtime directory and mode 587 587 RuntimeDirectory = "gitea"; 588 - RuntimeDirectoryMode = "0750"; 588 + RuntimeDirectoryMode = "0755"; 589 589 # Proc filesystem 590 590 ProcSubset = "pid"; 591 591 ProtectProc = "invisible";
+3 -3
pkgs/applications/misc/oranda/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "oranda"; 12 - version = "0.1.1"; 12 + version = "0.2.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "axodotdev"; 16 16 repo = "oranda"; 17 17 rev = "v${version}"; 18 - hash = "sha256-hxGRBMePUVod0Nwz2ozkZ6vmV7Ev+KeUFVKQDEViFJw="; 18 + hash = "sha256-1pkAIz6Zh0ArIDmRSLHTnIgySWdxrDx0amTkdZhY6vY="; 19 19 }; 20 20 21 - cargoHash = "sha256-Bn9dH+Iw825vuInip3KVx2zAPZixQ3vHkfoDFwPFzpk="; 21 + cargoHash = "sha256-TKpPAzqwWBH2dlBNvU2kuqqOVu5WhSnSR3wW5FsW7yk="; 22 22 23 23 nativeBuildInputs = [ 24 24 pkg-config
+4
pkgs/applications/misc/pytrainer/default.nix
··· 30 30 inherit version; 31 31 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 32 32 }; 33 + disabledTestPaths = [ 34 + "test/aaa_profiling" 35 + "test/ext/mypy" 36 + ]; 33 37 }); 34 38 }); 35 39 };
+1 -1
pkgs/applications/networking/browsers/firefox/wrapper.nix
··· 303 303 "''${executablePath}${nameSuffix}" \ 304 304 --prefix LD_LIBRARY_PATH ':' "$libs" \ 305 305 --suffix-each GTK_PATH ':' "$gtk_modules" \ 306 - --suffix PATH ':' "${xdg-utils}/bin" \ 306 + ${lib.optionalString (!xdg-utils.meta.broken) "--suffix PATH ':' \"${xdg-utils}/bin\""} \ 307 307 --suffix PATH ':' "$out/bin" \ 308 308 --set MOZ_APP_LAUNCHER "${launcherName}" \ 309 309 --set MOZ_SYSTEM_DIR "$out/lib/mozilla" \
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 42 42 43 43 thunderbird-115 = (buildMozillaMach rec { 44 44 pname = "thunderbird"; 45 - version = "115.0"; 45 + version = "115.0.1"; 46 46 application = "comm/mail"; 47 47 applicationName = "Mozilla Thunderbird"; 48 48 binaryName = pname; 49 49 src = fetchurl { 50 50 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 51 - sha512 = "2370a8e0b5ad2bc71bcb787cc93d31e5bf91bee9a4126c8677210e05936a726938b5fcff9b83c2ef1f509c1cadaa58638ba2399682308f32326a054496ea7a23"; 51 + sha512 = "9a53024790a537fb012d66e683248e82a9b2c2a4db6fc90d1e1d3c785c28e9d65f1d110c33dcbdad63f8f6ecb3e5c6a526c0028c3970125022ebe384506d4ba3"; 52 52 }; 53 53 extraPatches = [ 54 54 # The file to be patched is different from firefox's `no-buildconfig-ffx90.patch`.
+2 -2
pkgs/applications/networking/p2p/gnunet/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "gnunet"; 10 - version = "0.17.6"; 10 + version = "0.19.4"; 11 11 12 12 src = fetchurl { 13 13 url = "mirror://gnu/gnunet/${pname}-${version}.tar.gz"; 14 - sha256 = "sha256-JJNY7zsQzpmBB4H+2uxSam6rlDwSDku6CWrt+Rwa/EA="; 14 + sha256 = "sha256-AKY99AjVmH9bqaUEQfKncYK9n7MvHjAq5WOslOesAJs="; 15 15 }; 16 16 17 17 enableParallelBuilding = true;
+2 -2
pkgs/applications/networking/p2p/gnunet/gtk.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "gnunet-gtk"; 16 - version = "0.15.0"; 16 + version = "0.19.0"; 17 17 18 18 src = fetchurl { 19 19 url = "mirror://gnu/gnunet/${pname}-${version}.tar.gz"; 20 - sha256 = "sha256-FLLlqpQ7Bf+oNRUvx7IniVxFusy/tPYxEP2T6VGF7h8="; 20 + sha256 = "sha256-MwAWs1rHXYlRUcAWX8LnCLTwEOSI68aA0s7uZGgYR3w="; 21 21 }; 22 22 23 23 nativeBuildInputs= [
+13 -13
pkgs/applications/networking/taler/default.nix
··· 4 4 }: 5 5 6 6 let 7 - taler-merchant-backoffice = fetchgit { 8 - url = "https://git.taler.net/merchant-backoffice.git"; 9 - # branch "prebuilt" as of 2022-07-01 10 - rev = "1ef7150f32960cb65ebea67839cd5023f29a3d1d"; 11 - sha256 = "sha256-ZtLYWHi6l5DxFvDm8RFGUD0BiAfJXCZr/ggrP3Uw7/0="; 7 + version = "0.9.2"; 8 + 9 + taler-wallet-core = fetchgit { 10 + url = "https://git.taler.net/wallet-core.git"; 11 + rev = "v${version}"; 12 + sha256 = "sha256-DTnwj/pkowR1b1+N94pnuLykD2O37Nh8AKhUIzY7NaU="; 12 13 }; 13 14 14 15 in rec { 15 16 taler-exchange = stdenv.mkDerivation rec { 16 17 pname = "taler-exchange"; 17 - version = "unstable-2022-07-17"; 18 + inherit version; 18 19 19 20 src = fetchgit { 20 21 url = "https://git.taler.net/exchange.git"; 21 - rev = "93b45e62eef254eae68bc119b9770e97bae2c9fa"; 22 + rev = "v${version}"; 22 23 fetchSubmodules = true; 23 - sha256 = "sha256-BQxbwEf0wIkBOBVsPgMkMvUj4kFReXMUFTiSG0jXOJ0="; 24 + sha256 = "sha256-c0cX38hDIZGVhHrD9LgDU70dF2AYuZmsakC8yDyZE54="; 24 25 }; 25 26 26 27 nativeBuildInputs = [ ··· 42 43 ]; 43 44 propagatedBuildInputs = [ gnunet ]; 44 45 45 - configureFlags = [ "--with-gnunet=${gnunet}" ]; 46 46 preConfigure = '' 47 47 ./contrib/gana-update.sh 48 48 ''; ··· 73 73 74 74 taler-merchant = stdenv.mkDerivation rec { 75 75 pname = "taler-merchant"; 76 - version = "unstable-2022-07-11"; 76 + inherit version; 77 77 78 78 src = fetchgit { 79 79 url = "https://git.taler.net/merchant.git"; 80 - rev = "960dcacf25e51cc2bff359ea1fc86cdd3d9e6083"; 81 - sha256 = "sha256-Wn11z6YjnylZl3z2JjBlrtZ1KHfQUHLIYWo5F+mAmNo="; 80 + rev = "v${version}"; 81 + sha256 = "sha256-NPK8yhuTtZZiWE7OsUMdlb2aycegPzRFud41xHE9IL8="; 82 82 }; 83 83 postUnpack = '' 84 - ln -s ${taler-merchant-backoffice}/spa.html $sourceRoot/contrib/ 84 + ln -s ${taler-wallet-core}/spa.html $sourceRoot/contrib/ 85 85 ''; 86 86 87 87 nativeBuildInputs = [ pkg-config autoreconfHook ];
+2 -2
pkgs/applications/version-management/got/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "got"; 8 - version = "0.90"; 8 + version = "0.91"; 9 9 10 10 src = fetchurl { 11 11 url = "https://gameoftrees.org/releases/portable/got-portable-${version}.tar.gz"; 12 - hash = "sha256-2jU/Q6W5G1Y/HZvksr21D93//HCwpLd3+l3RFGKb94M="; 12 + hash = "sha256-ebFetQhgEBjy3aq3TfK9veeevbmSAEv9kaUohsnsrlU="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ pkg-config bison ]
+4
pkgs/applications/video/pyca/default.nix
··· 18 18 inherit version; 19 19 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 20 20 }; 21 + disabledTestPaths = [ 22 + "test/aaa_profiling" 23 + "test/ext/mypy" 24 + ]; 21 25 }); 22 26 }; 23 27 };
+6
pkgs/development/libraries/librsvg/default.nix
··· 102 102 ${lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) (stdenv.hostPlatform.emulator buildPackages)} ${lib.getDev gdk-pixbuf}/bin/gdk-pixbuf-query-loaders 103 103 ''; 104 104 105 + # librsvg only links Foundation, but it also requiers libobjc. The Framework.tbd in the 11.0 SDK 106 + # reexports libobjc, but the one in the 10.12 SDK does not, so link it manually. 107 + env = lib.optionalAttrs (stdenv.isDarwin && stdenv.isx86_64) { 108 + NIX_LDFLAGS = "-lobjc"; 109 + }; 110 + 105 111 preConfigure = '' 106 112 PKG_CONFIG_VAPIGEN_VAPIGEN="$(type -p vapigen)" 107 113 export PKG_CONFIG_VAPIGEN_VAPIGEN
+4
pkgs/development/tools/continuous-integration/buildbot/default.nix
··· 13 13 inherit version; 14 14 hash = "sha256-RKZgUGCAzJdeHfpXdv5fYxXdxiane1C/Du4YsDieomU="; 15 15 }; 16 + disabledTestPaths = [ 17 + "test/aaa_profiling" 18 + "test/ext/mypy" 19 + ]; 16 20 }); 17 21 moto = super.moto.overridePythonAttrs (oldAttrs: rec { 18 22 # a lot of tests -> very slow, we already build them when building python packages
+4
pkgs/servers/apache-airflow/default.nix
··· 31 31 rev = "refs/tags/rel_${lib.replaceStrings [ "." ] [ "_" ] version}"; 32 32 hash = "sha256-qyD3uoxEnD2pdVvwpUlSqHB3drD4Zg/+ov4CzLFIlLs="; 33 33 }; 34 + disabledTestPaths = [ 35 + "test/aaa_profiling" 36 + "test/ext/mypy" 37 + ]; 34 38 }); 35 39 36 40 apache-airflow = pySelf.callPackage ./python-package.nix { };
+4
pkgs/servers/calibre-web/default.nix
··· 15 15 inherit version; 16 16 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 17 17 }; 18 + disabledTestPaths = [ 19 + "test/aaa_profiling" 20 + "test/ext/mypy" 21 + ]; 18 22 }); 19 23 }; 20 24 };
+6 -6
pkgs/servers/nextcloud/default.nix
··· 60 60 ''; 61 61 62 62 nextcloud25 = generic { 63 - version = "25.0.8"; 64 - sha256 = "sha256-Ia6afooDCNDZsGSoh5dddZvLUE3fU+jU6sy6MrxUMVs="; 63 + version = "25.0.9"; 64 + sha256 = "sha256-k5XVM0ABRtAiCNoPNvkpYxq16Nb9Xd/VXNpqIDWg/nA="; 65 65 packages = nextcloud25Packages; 66 66 }; 67 67 68 68 nextcloud26 = generic { 69 - version = "26.0.3"; 70 - sha256 = "sha256-pagQy818Pc/yXyKAkyHy7UHtfMBgEgRImskOJYBgtck="; 69 + version = "26.0.4"; 70 + sha256 = "sha256-gBya6RLPYmS+csFB5BjT2H1OZxx6ndZDAI9dfWmR6i4="; 71 71 packages = nextcloud26Packages; 72 72 }; 73 73 74 74 nextcloud27 = generic { 75 - version = "27.0.0"; 76 - sha256 = "sha256-PTEqCbk0WsBYdY3XtAWb888LHw8ddHJRtvrDWFumUz8="; 75 + version = "27.0.1"; 76 + sha256 = "sha256-OXa16PWPk03b63zEmsM7Ea0629f21dCQig/DahYMJ70="; 77 77 packages = nextcloud27Packages; 78 78 }; 79 79
+6 -6
pkgs/servers/nextcloud/packages/25.json
··· 60 60 ] 61 61 }, 62 62 "files_texteditor": { 63 - "sha256": "0rmk14iw34pd81snp3lm01k07wm5j2nh9spcd4j0m43l20b7kxss", 64 - "url": "https://github.com/nextcloud-releases/files_texteditor/releases/download/v2.15.0/files_texteditor.tar.gz", 65 - "version": "2.15.0", 63 + "sha256": "1irvxz29fj9ccplgizwkchc885fqvqsmk9rj4gfwgpa8bgkya1y6", 64 + "url": "https://github.com/nextcloud-releases/files_texteditor/releases/download/v2.15.1/files_texteditor-v2.15.1.tar.gz", 65 + "version": "2.15.1", 66 66 "description": "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry called \"Text file\" in the \"New\" button menu at the top of the web browser appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation.", 67 67 "homepage": "https://github.com/nextcloud/files_texteditor", 68 68 "licenses": [ ··· 220 220 ] 221 221 }, 222 222 "spreed": { 223 - "sha256": "1b6v7jfvrkpyarz4zg1lvw938wv3hx6g0nhpdvsfnjqr03rrgywk", 224 - "url": "https://github.com/nextcloud-releases/spreed/releases/download/v15.0.6/spreed-v15.0.6.tar.gz", 225 - "version": "15.0.6", 223 + "sha256": "0az92qmc24n91zh2vq4qs99zppph6bchknv5akw6c7iqpg8d12gk", 224 + "url": "https://github.com/nextcloud-releases/spreed/releases/download/v15.0.7/spreed-v15.0.7.tar.gz", 225 + "version": "15.0.7", 226 226 "description": "Chat, video & audio-conferencing using WebRTC\n\n* 💬 **Chat integration!** Nextcloud Talk comes with a simple text chat. Allowing you to share files from your Nextcloud and mentioning other participants.\n* 👥 **Private, group, public and password protected calls!** Just invite somebody, a whole group or send a public link to invite to a call.\n* 💻 **Screen sharing!** Share your screen with participants of your call. You just need to use Firefox version 66 (or newer), latest Edge or Chrome 72 (or newer, also possible using Chrome 49 with this [Chrome extension](https://chrome.google.com/webstore/detail/screensharing-for-nextclo/kepnpjhambipllfmgmbapncekcmabkol)).\n* 🚀 **Integration with other Nextcloud apps** like Files, Contacts and Deck. More to come.\n\nAnd in the works for the [coming versions](https://github.com/nextcloud/spreed/milestones/):\n* ✋ [Federated calls](https://github.com/nextcloud/spreed/issues/21), to call people on other Nextclouds", 227 227 "homepage": "https://github.com/nextcloud/spreed", 228 228 "licenses": [
+8 -8
pkgs/servers/nextcloud/packages/26.json
··· 60 60 ] 61 61 }, 62 62 "files_texteditor": { 63 - "sha256": "0rmk14iw34pd81snp3lm01k07wm5j2nh9spcd4j0m43l20b7kxss", 64 - "url": "https://github.com/nextcloud-releases/files_texteditor/releases/download/v2.15.0/files_texteditor.tar.gz", 65 - "version": "2.15.0", 63 + "sha256": "1irvxz29fj9ccplgizwkchc885fqvqsmk9rj4gfwgpa8bgkya1y6", 64 + "url": "https://github.com/nextcloud-releases/files_texteditor/releases/download/v2.15.1/files_texteditor-v2.15.1.tar.gz", 65 + "version": "2.15.1", 66 66 "description": "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry called \"Text file\" in the \"New\" button menu at the top of the web browser appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation.", 67 67 "homepage": "https://github.com/nextcloud/files_texteditor", 68 68 "licenses": [ ··· 120 120 ] 121 121 }, 122 122 "maps": { 123 - "sha256": "0517kakkk7lr7ays6rrnl276709kcm5yvkp8g6cwjnfih7pmnkn9", 124 - "url": "https://github.com/nextcloud/maps/releases/download/v1.1.0-2a-nightly/maps-1.1.0-2a-nightly.tar.gz", 123 + "sha256": "12dg1bklv2jhmj5dnz4ram6zvgf8kipfz77g1lcn77fyhzqw6y1z", 124 + "url": "https://github.com/nextcloud/maps/releases/download/v1.1.0/maps-1.1.0.tar.gz", 125 125 "version": "1.1.0", 126 126 "description": "**The whole world fits inside your cloud!**\n\n- **🗺 Beautiful map:** Using [OpenStreetMap](https://www.openstreetmap.org) and [Leaflet](https://leafletjs.com), you can choose between standard map, satellite, topographical, dark mode or even watercolor! 🎨\n- **⭐ Favorites:** Save your favorite places, privately! Sync with [GNOME Maps](https://github.com/nextcloud/maps/issues/30) and mobile apps is planned.\n- **🧭 Routing:** Possible using either [OSRM](http://project-osrm.org), [GraphHopper](https://www.graphhopper.com) or [Mapbox](https://www.mapbox.com).\n- **🖼 Photos on the map:** No more boring slideshows, just show directly where you were!\n- **🙋 Contacts on the map:** See where your friends live and plan your next visit.\n- **📱 Devices:** Lost your phone? Check the map!\n- **〰 Tracks:** Load GPS tracks or past trips. Recording with [PhoneTrack](https://f-droid.org/en/packages/net.eneiluj.nextcloud.phonetrack/) or [OwnTracks](https://owntracks.org) is planned.", 127 127 "homepage": "https://github.com/nextcloud/maps", ··· 220 220 ] 221 221 }, 222 222 "spreed": { 223 - "sha256": "1khnbxifvs2w0xabc7ivsfzx845601f3dq5jg0nxbmrbigcdj7x2", 224 - "url": "https://github.com/nextcloud-releases/spreed/releases/download/v16.0.4/spreed-v16.0.4.tar.gz", 225 - "version": "16.0.4", 223 + "sha256": "09jkq0fiw5h60qvjhld0nrralf2yrdcnpr9q4chw5hq0q710526n", 224 + "url": "https://github.com/nextcloud-releases/spreed/releases/download/v16.0.5/spreed-v16.0.5.tar.gz", 225 + "version": "16.0.5", 226 226 "description": "Chat, video & audio-conferencing using WebRTC\n\n* 💬 **Chat integration!** Nextcloud Talk comes with a simple text chat. Allowing you to share files from your Nextcloud and mentioning other participants.\n* 👥 **Private, group, public and password protected calls!** Just invite somebody, a whole group or send a public link to invite to a call.\n* 💻 **Screen sharing!** Share your screen with participants of your call. You just need to use Firefox version 66 (or newer), latest Edge or Chrome 72 (or newer, also possible using Chrome 49 with this [Chrome extension](https://chrome.google.com/webstore/detail/screensharing-for-nextclo/kepnpjhambipllfmgmbapncekcmabkol)).\n* 🚀 **Integration with other Nextcloud apps** like Files, Contacts and Deck. More to come.\n\nAnd in the works for the [coming versions](https://github.com/nextcloud/spreed/milestones/):\n* ✋ [Federated calls](https://github.com/nextcloud/spreed/issues/21), to call people on other Nextclouds", 227 227 "homepage": "https://github.com/nextcloud/spreed", 228 228 "licenses": [
+15 -5
pkgs/servers/nextcloud/packages/27.json
··· 59 59 "agpl" 60 60 ] 61 61 }, 62 + "files_texteditor": { 63 + "sha256": "1irvxz29fj9ccplgizwkchc885fqvqsmk9rj4gfwgpa8bgkya1y6", 64 + "url": "https://github.com/nextcloud-releases/files_texteditor/releases/download/v2.15.1/files_texteditor-v2.15.1.tar.gz", 65 + "version": "2.15.1", 66 + "description": "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry called \"Text file\" in the \"New\" button menu at the top of the web browser appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation.", 67 + "homepage": "https://github.com/nextcloud/files_texteditor", 68 + "licenses": [ 69 + "agpl" 70 + ] 71 + }, 62 72 "forms": { 63 73 "sha256": "155z87wyv2p06c3kpy9zaw6qf5s7s0ah4wfw022s4cc21i3rcwxv", 64 74 "url": "https://github.com/nextcloud-releases/forms/releases/download/v3.3.1/forms-v3.3.1.tar.gz", ··· 110 120 ] 111 121 }, 112 122 "maps": { 113 - "sha256": "0517kakkk7lr7ays6rrnl276709kcm5yvkp8g6cwjnfih7pmnkn9", 114 - "url": "https://github.com/nextcloud/maps/releases/download/v1.1.0-2a-nightly/maps-1.1.0-2a-nightly.tar.gz", 123 + "sha256": "12dg1bklv2jhmj5dnz4ram6zvgf8kipfz77g1lcn77fyhzqw6y1z", 124 + "url": "https://github.com/nextcloud/maps/releases/download/v1.1.0/maps-1.1.0.tar.gz", 115 125 "version": "1.1.0", 116 126 "description": "**The whole world fits inside your cloud!**\n\n- **🗺 Beautiful map:** Using [OpenStreetMap](https://www.openstreetmap.org) and [Leaflet](https://leafletjs.com), you can choose between standard map, satellite, topographical, dark mode or even watercolor! 🎨\n- **⭐ Favorites:** Save your favorite places, privately! Sync with [GNOME Maps](https://github.com/nextcloud/maps/issues/30) and mobile apps is planned.\n- **🧭 Routing:** Possible using either [OSRM](http://project-osrm.org), [GraphHopper](https://www.graphhopper.com) or [Mapbox](https://www.mapbox.com).\n- **🖼 Photos on the map:** No more boring slideshows, just show directly where you were!\n- **🙋 Contacts on the map:** See where your friends live and plan your next visit.\n- **📱 Devices:** Lost your phone? Check the map!\n- **〰 Tracks:** Load GPS tracks or past trips. Recording with [PhoneTrack](https://f-droid.org/en/packages/net.eneiluj.nextcloud.phonetrack/) or [OwnTracks](https://owntracks.org) is planned.", 117 127 "homepage": "https://github.com/nextcloud/maps", ··· 208 218 ] 209 219 }, 210 220 "spreed": { 211 - "sha256": "19v260dhd2m0zjmlkq7ccwnj06cy2xkjymx3gpzdvs0i4c74cqr9", 212 - "url": "https://github.com/nextcloud-releases/spreed/releases/download/v17.0.1/spreed-v17.0.1.tar.gz", 213 - "version": "17.0.1", 221 + "sha256": "07bf6vmz957m2myazkvw63q40lisi14kyb42w4gpg3860ihr16sc", 222 + "url": "https://github.com/nextcloud-releases/spreed/releases/download/v17.0.2/spreed-v17.0.2.tar.gz", 223 + "version": "17.0.2", 214 224 "description": "Chat, video & audio-conferencing using WebRTC\n\n* 💬 **Chat integration!** Nextcloud Talk comes with a simple text chat. Allowing you to share files from your Nextcloud and mentioning other participants.\n* 👥 **Private, group, public and password protected calls!** Just invite somebody, a whole group or send a public link to invite to a call.\n* 💻 **Screen sharing!** Share your screen with participants of your call. You just need to use Firefox version 66 (or newer), latest Edge or Chrome 72 (or newer, also possible using Chrome 49 with this [Chrome extension](https://chrome.google.com/webstore/detail/screensharing-for-nextclo/kepnpjhambipllfmgmbapncekcmabkol)).\n* 🚀 **Integration with other Nextcloud apps** like Files, Contacts and Deck. More to come.\n\nAnd in the works for the [coming versions](https://github.com/nextcloud/spreed/milestones/):\n* ✋ [Federated calls](https://github.com/nextcloud/spreed/issues/21), to call people on other Nextclouds", 215 225 "homepage": "https://github.com/nextcloud/spreed", 216 226 "licenses": [
+33
pkgs/servers/search/weaviate/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "weaviate"; 8 + version = "1.19.8"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "weaviate"; 12 + repo = "weaviate"; 13 + rev = "v${version}"; 14 + hash = "sha256-rSv6ERVReWMt05C70a8i+hgTF2JGvcSkydex/2Vp+80="; 15 + }; 16 + 17 + vendorHash = "sha256-27YbjTtFaD5nMkcTXeAR/vZPWgG5qRvdnoNv6S7/SOI="; 18 + 19 + subPackages = [ "cmd/weaviate-server" ]; 20 + 21 + ldflags = [ "-w" "-extldflags" "-static" ]; 22 + 23 + postInstall = '' 24 + ln -s $out/bin/weaviate-server $out/bin/weaviate 25 + ''; 26 + 27 + meta = with lib; { 28 + description = "The ML-first vector search engine"; 29 + homepage = "https://github.com/semi-technologies/weaviate"; 30 + license = licenses.bsd3; 31 + maintainers = with maintainers; [ dit7ya ]; 32 + }; 33 + }
+2 -2
pkgs/tools/misc/esphome/dashboard.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "esphome-dashboard"; 8 - version = "20230621.0"; 8 + version = "20230711.0"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - hash = "sha256-e5nAhtM5Yc2KNmH6a041o6i6SnVCbaONulBe1ZCF0+w="; 13 + hash = "sha256-00JenOcGttrDDvIIK/iERboiRr7dsg2ibbNAmB4LItU="; 14 14 }; 15 15 16 16 # no tests
+2 -2
pkgs/tools/misc/esphome/default.nix
··· 16 16 in 17 17 python.pkgs.buildPythonApplication rec { 18 18 pname = "esphome"; 19 - version = "2023.6.5"; 19 + version = "2023.7.0"; 20 20 format = "setuptools"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = pname; 24 24 repo = pname; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-3CuIAzw4AxvpUw69WEq99XIv0D+TqwejqEGPvG2Zdpw="; 26 + hash = "sha256-zJ00Ypb//b+SndzMC/QGzxtu9GZefaJvr5tKYp68hhc="; 27 27 }; 28 28 29 29 postPatch = ''
+4
pkgs/tools/misc/ntfy/default.nix
··· 25 25 inherit version; 26 26 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 27 27 }; 28 + disabledTestPaths = [ 29 + "test/aaa_profiling" 30 + "test/ext/mypy" 31 + ]; 28 32 }; 29 33 }; 30 34 };
+4
pkgs/tools/misc/sqlite3-to-mysql/default.nix
··· 19 19 inherit version; 20 20 hash = "sha256-LdpflnGa6Js+wPG3lpjYbrmuyx1U6ZCrs/3ZLAS0apA="; 21 21 }; 22 + disabledTestPaths = [ 23 + "test/aaa_profiling" 24 + "test/ext/mypy" 25 + ]; 22 26 }; 23 27 }; 24 28 self = py;
+3 -6
pkgs/tools/text/csvkit/default.nix
··· 13 13 inherit version; 14 14 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 15 15 }; 16 - nativeCheckInputs = oldAttrs.nativeCheckInputs ++ (with super; [ 17 - pytest-xdist 18 - ]); 19 - disabledTestPaths = (oldAttrs.disabledTestPaths or []) ++ [ 20 - "test/aaa_profiling" 21 - "test/ext/mypy" 16 + disabledTestPaths = [ 17 + "test/aaa_profiling" 18 + "test/ext/mypy" 22 19 ]; 23 20 }); 24 21 };
+3 -3
pkgs/tools/text/ov/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "ov"; 13 - version = "0.30.0"; 13 + version = "0.31.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "noborus"; 17 17 repo = "ov"; 18 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-xTnUTtMm986MnQEKgExWfABU8E8C+ZiRZvOpg3FY5cY="; 19 + hash = "sha256-UtYFr5eFdEU/oZqwy84W/GQiFrMPWRIomqgJY3P52Ws="; 20 20 }; 21 21 22 - vendorHash = "sha256-bQREazHu0SQrMKyNPtUvzeKR/zb0FJOLpHBwHml43Hs="; 22 + vendorHash = "sha256-0Gs/GFlAl+ttprAVq9NxRLYzP/U2PD4IrY+drSIWJ/c="; 23 23 24 24 ldflags = [ 25 25 "-s"
+2
pkgs/top-level/all-packages.nix
··· 14415 14415 14416 14416 wdisplays = callPackage ../tools/graphics/wdisplays { }; 14417 14417 14418 + weaviate = callPackage ../servers/search/weaviate { }; 14419 + 14418 14420 webalizer = callPackage ../tools/networking/webalizer { }; 14419 14421 14420 14422 wget = callPackage ../tools/networking/wget { };