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 Restart = "always"; 586 # Runtime directory and mode 587 RuntimeDirectory = "gitea"; 588 - RuntimeDirectoryMode = "0750"; 589 # Proc filesystem 590 ProcSubset = "pid"; 591 ProtectProc = "invisible";
··· 585 Restart = "always"; 586 # Runtime directory and mode 587 RuntimeDirectory = "gitea"; 588 + RuntimeDirectoryMode = "0755"; 589 # Proc filesystem 590 ProcSubset = "pid"; 591 ProtectProc = "invisible";
+3 -3
pkgs/applications/misc/oranda/default.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "oranda"; 12 - version = "0.1.1"; 13 14 src = fetchFromGitHub { 15 owner = "axodotdev"; 16 repo = "oranda"; 17 rev = "v${version}"; 18 - hash = "sha256-hxGRBMePUVod0Nwz2ozkZ6vmV7Ev+KeUFVKQDEViFJw="; 19 }; 20 21 - cargoHash = "sha256-Bn9dH+Iw825vuInip3KVx2zAPZixQ3vHkfoDFwPFzpk="; 22 23 nativeBuildInputs = [ 24 pkg-config
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "oranda"; 12 + version = "0.2.0"; 13 14 src = fetchFromGitHub { 15 owner = "axodotdev"; 16 repo = "oranda"; 17 rev = "v${version}"; 18 + hash = "sha256-1pkAIz6Zh0ArIDmRSLHTnIgySWdxrDx0amTkdZhY6vY="; 19 }; 20 21 + cargoHash = "sha256-TKpPAzqwWBH2dlBNvU2kuqqOVu5WhSnSR3wW5FsW7yk="; 22 23 nativeBuildInputs = [ 24 pkg-config
+4
pkgs/applications/misc/pytrainer/default.nix
··· 30 inherit version; 31 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 32 }; 33 }); 34 }); 35 };
··· 30 inherit version; 31 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 32 }; 33 + disabledTestPaths = [ 34 + "test/aaa_profiling" 35 + "test/ext/mypy" 36 + ]; 37 }); 38 }); 39 };
+1 -1
pkgs/applications/networking/browsers/firefox/wrapper.nix
··· 303 "''${executablePath}${nameSuffix}" \ 304 --prefix LD_LIBRARY_PATH ':' "$libs" \ 305 --suffix-each GTK_PATH ':' "$gtk_modules" \ 306 - --suffix PATH ':' "${xdg-utils}/bin" \ 307 --suffix PATH ':' "$out/bin" \ 308 --set MOZ_APP_LAUNCHER "${launcherName}" \ 309 --set MOZ_SYSTEM_DIR "$out/lib/mozilla" \
··· 303 "''${executablePath}${nameSuffix}" \ 304 --prefix LD_LIBRARY_PATH ':' "$libs" \ 305 --suffix-each GTK_PATH ':' "$gtk_modules" \ 306 + ${lib.optionalString (!xdg-utils.meta.broken) "--suffix PATH ':' \"${xdg-utils}/bin\""} \ 307 --suffix PATH ':' "$out/bin" \ 308 --set MOZ_APP_LAUNCHER "${launcherName}" \ 309 --set MOZ_SYSTEM_DIR "$out/lib/mozilla" \
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 42 43 thunderbird-115 = (buildMozillaMach rec { 44 pname = "thunderbird"; 45 - version = "115.0"; 46 application = "comm/mail"; 47 applicationName = "Mozilla Thunderbird"; 48 binaryName = pname; 49 src = fetchurl { 50 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 51 - sha512 = "2370a8e0b5ad2bc71bcb787cc93d31e5bf91bee9a4126c8677210e05936a726938b5fcff9b83c2ef1f509c1cadaa58638ba2399682308f32326a054496ea7a23"; 52 }; 53 extraPatches = [ 54 # The file to be patched is different from firefox's `no-buildconfig-ffx90.patch`.
··· 42 43 thunderbird-115 = (buildMozillaMach rec { 44 pname = "thunderbird"; 45 + version = "115.0.1"; 46 application = "comm/mail"; 47 applicationName = "Mozilla Thunderbird"; 48 binaryName = pname; 49 src = fetchurl { 50 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 51 + sha512 = "9a53024790a537fb012d66e683248e82a9b2c2a4db6fc90d1e1d3c785c28e9d65f1d110c33dcbdad63f8f6ecb3e5c6a526c0028c3970125022ebe384506d4ba3"; 52 }; 53 extraPatches = [ 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 8 stdenv.mkDerivation rec { 9 pname = "gnunet"; 10 - version = "0.17.6"; 11 12 src = fetchurl { 13 url = "mirror://gnu/gnunet/${pname}-${version}.tar.gz"; 14 - sha256 = "sha256-JJNY7zsQzpmBB4H+2uxSam6rlDwSDku6CWrt+Rwa/EA="; 15 }; 16 17 enableParallelBuilding = true;
··· 7 8 stdenv.mkDerivation rec { 9 pname = "gnunet"; 10 + version = "0.19.4"; 11 12 src = fetchurl { 13 url = "mirror://gnu/gnunet/${pname}-${version}.tar.gz"; 14 + sha256 = "sha256-AKY99AjVmH9bqaUEQfKncYK9n7MvHjAq5WOslOesAJs="; 15 }; 16 17 enableParallelBuilding = true;
+2 -2
pkgs/applications/networking/p2p/gnunet/gtk.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "gnunet-gtk"; 16 - version = "0.15.0"; 17 18 src = fetchurl { 19 url = "mirror://gnu/gnunet/${pname}-${version}.tar.gz"; 20 - sha256 = "sha256-FLLlqpQ7Bf+oNRUvx7IniVxFusy/tPYxEP2T6VGF7h8="; 21 }; 22 23 nativeBuildInputs= [
··· 13 14 stdenv.mkDerivation rec { 15 pname = "gnunet-gtk"; 16 + version = "0.19.0"; 17 18 src = fetchurl { 19 url = "mirror://gnu/gnunet/${pname}-${version}.tar.gz"; 20 + sha256 = "sha256-MwAWs1rHXYlRUcAWX8LnCLTwEOSI68aA0s7uZGgYR3w="; 21 }; 22 23 nativeBuildInputs= [
+13 -13
pkgs/applications/networking/taler/default.nix
··· 4 }: 5 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="; 12 }; 13 14 in rec { 15 taler-exchange = stdenv.mkDerivation rec { 16 pname = "taler-exchange"; 17 - version = "unstable-2022-07-17"; 18 19 src = fetchgit { 20 url = "https://git.taler.net/exchange.git"; 21 - rev = "93b45e62eef254eae68bc119b9770e97bae2c9fa"; 22 fetchSubmodules = true; 23 - sha256 = "sha256-BQxbwEf0wIkBOBVsPgMkMvUj4kFReXMUFTiSG0jXOJ0="; 24 }; 25 26 nativeBuildInputs = [ ··· 42 ]; 43 propagatedBuildInputs = [ gnunet ]; 44 45 - configureFlags = [ "--with-gnunet=${gnunet}" ]; 46 preConfigure = '' 47 ./contrib/gana-update.sh 48 ''; ··· 73 74 taler-merchant = stdenv.mkDerivation rec { 75 pname = "taler-merchant"; 76 - version = "unstable-2022-07-11"; 77 78 src = fetchgit { 79 url = "https://git.taler.net/merchant.git"; 80 - rev = "960dcacf25e51cc2bff359ea1fc86cdd3d9e6083"; 81 - sha256 = "sha256-Wn11z6YjnylZl3z2JjBlrtZ1KHfQUHLIYWo5F+mAmNo="; 82 }; 83 postUnpack = '' 84 - ln -s ${taler-merchant-backoffice}/spa.html $sourceRoot/contrib/ 85 ''; 86 87 nativeBuildInputs = [ pkg-config autoreconfHook ];
··· 4 }: 5 6 let 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="; 13 }; 14 15 in rec { 16 taler-exchange = stdenv.mkDerivation rec { 17 pname = "taler-exchange"; 18 + inherit version; 19 20 src = fetchgit { 21 url = "https://git.taler.net/exchange.git"; 22 + rev = "v${version}"; 23 fetchSubmodules = true; 24 + sha256 = "sha256-c0cX38hDIZGVhHrD9LgDU70dF2AYuZmsakC8yDyZE54="; 25 }; 26 27 nativeBuildInputs = [ ··· 43 ]; 44 propagatedBuildInputs = [ gnunet ]; 45 46 preConfigure = '' 47 ./contrib/gana-update.sh 48 ''; ··· 73 74 taler-merchant = stdenv.mkDerivation rec { 75 pname = "taler-merchant"; 76 + inherit version; 77 78 src = fetchgit { 79 url = "https://git.taler.net/merchant.git"; 80 + rev = "v${version}"; 81 + sha256 = "sha256-NPK8yhuTtZZiWE7OsUMdlb2aycegPzRFud41xHE9IL8="; 82 }; 83 postUnpack = '' 84 + ln -s ${taler-wallet-core}/spa.html $sourceRoot/contrib/ 85 ''; 86 87 nativeBuildInputs = [ pkg-config autoreconfHook ];
+2 -2
pkgs/applications/version-management/got/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 pname = "got"; 8 - version = "0.90"; 9 10 src = fetchurl { 11 url = "https://gameoftrees.org/releases/portable/got-portable-${version}.tar.gz"; 12 - hash = "sha256-2jU/Q6W5G1Y/HZvksr21D93//HCwpLd3+l3RFGKb94M="; 13 }; 14 15 nativeBuildInputs = [ pkg-config bison ]
··· 5 6 stdenv.mkDerivation rec { 7 pname = "got"; 8 + version = "0.91"; 9 10 src = fetchurl { 11 url = "https://gameoftrees.org/releases/portable/got-portable-${version}.tar.gz"; 12 + hash = "sha256-ebFetQhgEBjy3aq3TfK9veeevbmSAEv9kaUohsnsrlU="; 13 }; 14 15 nativeBuildInputs = [ pkg-config bison ]
+4
pkgs/applications/video/pyca/default.nix
··· 18 inherit version; 19 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 20 }; 21 }); 22 }; 23 };
··· 18 inherit version; 19 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 20 }; 21 + disabledTestPaths = [ 22 + "test/aaa_profiling" 23 + "test/ext/mypy" 24 + ]; 25 }); 26 }; 27 };
+6
pkgs/development/libraries/librsvg/default.nix
··· 102 ${lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) (stdenv.hostPlatform.emulator buildPackages)} ${lib.getDev gdk-pixbuf}/bin/gdk-pixbuf-query-loaders 103 ''; 104 105 preConfigure = '' 106 PKG_CONFIG_VAPIGEN_VAPIGEN="$(type -p vapigen)" 107 export PKG_CONFIG_VAPIGEN_VAPIGEN
··· 102 ${lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) (stdenv.hostPlatform.emulator buildPackages)} ${lib.getDev gdk-pixbuf}/bin/gdk-pixbuf-query-loaders 103 ''; 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 + 111 preConfigure = '' 112 PKG_CONFIG_VAPIGEN_VAPIGEN="$(type -p vapigen)" 113 export PKG_CONFIG_VAPIGEN_VAPIGEN
+4
pkgs/development/tools/continuous-integration/buildbot/default.nix
··· 13 inherit version; 14 hash = "sha256-RKZgUGCAzJdeHfpXdv5fYxXdxiane1C/Du4YsDieomU="; 15 }; 16 }); 17 moto = super.moto.overridePythonAttrs (oldAttrs: rec { 18 # a lot of tests -> very slow, we already build them when building python packages
··· 13 inherit version; 14 hash = "sha256-RKZgUGCAzJdeHfpXdv5fYxXdxiane1C/Du4YsDieomU="; 15 }; 16 + disabledTestPaths = [ 17 + "test/aaa_profiling" 18 + "test/ext/mypy" 19 + ]; 20 }); 21 moto = super.moto.overridePythonAttrs (oldAttrs: rec { 22 # a lot of tests -> very slow, we already build them when building python packages
+4
pkgs/servers/apache-airflow/default.nix
··· 31 rev = "refs/tags/rel_${lib.replaceStrings [ "." ] [ "_" ] version}"; 32 hash = "sha256-qyD3uoxEnD2pdVvwpUlSqHB3drD4Zg/+ov4CzLFIlLs="; 33 }; 34 }); 35 36 apache-airflow = pySelf.callPackage ./python-package.nix { };
··· 31 rev = "refs/tags/rel_${lib.replaceStrings [ "." ] [ "_" ] version}"; 32 hash = "sha256-qyD3uoxEnD2pdVvwpUlSqHB3drD4Zg/+ov4CzLFIlLs="; 33 }; 34 + disabledTestPaths = [ 35 + "test/aaa_profiling" 36 + "test/ext/mypy" 37 + ]; 38 }); 39 40 apache-airflow = pySelf.callPackage ./python-package.nix { };
+4
pkgs/servers/calibre-web/default.nix
··· 15 inherit version; 16 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 17 }; 18 }); 19 }; 20 };
··· 15 inherit version; 16 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 17 }; 18 + disabledTestPaths = [ 19 + "test/aaa_profiling" 20 + "test/ext/mypy" 21 + ]; 22 }); 23 }; 24 };
+6 -6
pkgs/servers/nextcloud/default.nix
··· 60 ''; 61 62 nextcloud25 = generic { 63 - version = "25.0.8"; 64 - sha256 = "sha256-Ia6afooDCNDZsGSoh5dddZvLUE3fU+jU6sy6MrxUMVs="; 65 packages = nextcloud25Packages; 66 }; 67 68 nextcloud26 = generic { 69 - version = "26.0.3"; 70 - sha256 = "sha256-pagQy818Pc/yXyKAkyHy7UHtfMBgEgRImskOJYBgtck="; 71 packages = nextcloud26Packages; 72 }; 73 74 nextcloud27 = generic { 75 - version = "27.0.0"; 76 - sha256 = "sha256-PTEqCbk0WsBYdY3XtAWb888LHw8ddHJRtvrDWFumUz8="; 77 packages = nextcloud27Packages; 78 }; 79
··· 60 ''; 61 62 nextcloud25 = generic { 63 + version = "25.0.9"; 64 + sha256 = "sha256-k5XVM0ABRtAiCNoPNvkpYxq16Nb9Xd/VXNpqIDWg/nA="; 65 packages = nextcloud25Packages; 66 }; 67 68 nextcloud26 = generic { 69 + version = "26.0.4"; 70 + sha256 = "sha256-gBya6RLPYmS+csFB5BjT2H1OZxx6ndZDAI9dfWmR6i4="; 71 packages = nextcloud26Packages; 72 }; 73 74 nextcloud27 = generic { 75 + version = "27.0.1"; 76 + sha256 = "sha256-OXa16PWPk03b63zEmsM7Ea0629f21dCQig/DahYMJ70="; 77 packages = nextcloud27Packages; 78 }; 79
+6 -6
pkgs/servers/nextcloud/packages/25.json
··· 60 ] 61 }, 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", 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": [ ··· 220 ] 221 }, 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", 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 "homepage": "https://github.com/nextcloud/spreed", 228 "licenses": [
··· 60 ] 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": [ ··· 220 ] 221 }, 222 "spreed": { 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 "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 "homepage": "https://github.com/nextcloud/spreed", 228 "licenses": [
+8 -8
pkgs/servers/nextcloud/packages/26.json
··· 60 ] 61 }, 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", 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": [ ··· 120 ] 121 }, 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", 125 "version": "1.1.0", 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 "homepage": "https://github.com/nextcloud/maps", ··· 220 ] 221 }, 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", 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 "homepage": "https://github.com/nextcloud/spreed", 228 "licenses": [
··· 60 ] 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": [ ··· 120 ] 121 }, 122 "maps": { 123 + "sha256": "12dg1bklv2jhmj5dnz4ram6zvgf8kipfz77g1lcn77fyhzqw6y1z", 124 + "url": "https://github.com/nextcloud/maps/releases/download/v1.1.0/maps-1.1.0.tar.gz", 125 "version": "1.1.0", 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 "homepage": "https://github.com/nextcloud/maps", ··· 220 ] 221 }, 222 "spreed": { 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 "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 "homepage": "https://github.com/nextcloud/spreed", 228 "licenses": [
+15 -5
pkgs/servers/nextcloud/packages/27.json
··· 59 "agpl" 60 ] 61 }, 62 "forms": { 63 "sha256": "155z87wyv2p06c3kpy9zaw6qf5s7s0ah4wfw022s4cc21i3rcwxv", 64 "url": "https://github.com/nextcloud-releases/forms/releases/download/v3.3.1/forms-v3.3.1.tar.gz", ··· 110 ] 111 }, 112 "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", 115 "version": "1.1.0", 116 "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 "homepage": "https://github.com/nextcloud/maps", ··· 208 ] 209 }, 210 "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", 214 "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 "homepage": "https://github.com/nextcloud/spreed", 216 "licenses": [
··· 59 "agpl" 60 ] 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 + }, 72 "forms": { 73 "sha256": "155z87wyv2p06c3kpy9zaw6qf5s7s0ah4wfw022s4cc21i3rcwxv", 74 "url": "https://github.com/nextcloud-releases/forms/releases/download/v3.3.1/forms-v3.3.1.tar.gz", ··· 120 ] 121 }, 122 "maps": { 123 + "sha256": "12dg1bklv2jhmj5dnz4ram6zvgf8kipfz77g1lcn77fyhzqw6y1z", 124 + "url": "https://github.com/nextcloud/maps/releases/download/v1.1.0/maps-1.1.0.tar.gz", 125 "version": "1.1.0", 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 "homepage": "https://github.com/nextcloud/maps", ··· 218 ] 219 }, 220 "spreed": { 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", 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", 225 "homepage": "https://github.com/nextcloud/spreed", 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 6 buildPythonPackage rec { 7 pname = "esphome-dashboard"; 8 - version = "20230621.0"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - hash = "sha256-e5nAhtM5Yc2KNmH6a041o6i6SnVCbaONulBe1ZCF0+w="; 14 }; 15 16 # no tests
··· 5 6 buildPythonPackage rec { 7 pname = "esphome-dashboard"; 8 + version = "20230711.0"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + hash = "sha256-00JenOcGttrDDvIIK/iERboiRr7dsg2ibbNAmB4LItU="; 14 }; 15 16 # no tests
+2 -2
pkgs/tools/misc/esphome/default.nix
··· 16 in 17 python.pkgs.buildPythonApplication rec { 18 pname = "esphome"; 19 - version = "2023.6.5"; 20 format = "setuptools"; 21 22 src = fetchFromGitHub { 23 owner = pname; 24 repo = pname; 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-3CuIAzw4AxvpUw69WEq99XIv0D+TqwejqEGPvG2Zdpw="; 27 }; 28 29 postPatch = ''
··· 16 in 17 python.pkgs.buildPythonApplication rec { 18 pname = "esphome"; 19 + version = "2023.7.0"; 20 format = "setuptools"; 21 22 src = fetchFromGitHub { 23 owner = pname; 24 repo = pname; 25 rev = "refs/tags/${version}"; 26 + hash = "sha256-zJ00Ypb//b+SndzMC/QGzxtu9GZefaJvr5tKYp68hhc="; 27 }; 28 29 postPatch = ''
+4
pkgs/tools/misc/ntfy/default.nix
··· 25 inherit version; 26 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 27 }; 28 }; 29 }; 30 };
··· 25 inherit version; 26 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 27 }; 28 + disabledTestPaths = [ 29 + "test/aaa_profiling" 30 + "test/ext/mypy" 31 + ]; 32 }; 33 }; 34 };
+4
pkgs/tools/misc/sqlite3-to-mysql/default.nix
··· 19 inherit version; 20 hash = "sha256-LdpflnGa6Js+wPG3lpjYbrmuyx1U6ZCrs/3ZLAS0apA="; 21 }; 22 }; 23 }; 24 self = py;
··· 19 inherit version; 20 hash = "sha256-LdpflnGa6Js+wPG3lpjYbrmuyx1U6ZCrs/3ZLAS0apA="; 21 }; 22 + disabledTestPaths = [ 23 + "test/aaa_profiling" 24 + "test/ext/mypy" 25 + ]; 26 }; 27 }; 28 self = py;
+3 -6
pkgs/tools/text/csvkit/default.nix
··· 13 inherit version; 14 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 15 }; 16 - nativeCheckInputs = oldAttrs.nativeCheckInputs ++ (with super; [ 17 - pytest-xdist 18 - ]); 19 - disabledTestPaths = (oldAttrs.disabledTestPaths or []) ++ [ 20 - "test/aaa_profiling" 21 - "test/ext/mypy" 22 ]; 23 }); 24 };
··· 13 inherit version; 14 hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA="; 15 }; 16 + disabledTestPaths = [ 17 + "test/aaa_profiling" 18 + "test/ext/mypy" 19 ]; 20 }); 21 };
+3 -3
pkgs/tools/text/ov/default.nix
··· 10 11 buildGoModule rec { 12 pname = "ov"; 13 - version = "0.30.0"; 14 15 src = fetchFromGitHub { 16 owner = "noborus"; 17 repo = "ov"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-xTnUTtMm986MnQEKgExWfABU8E8C+ZiRZvOpg3FY5cY="; 20 }; 21 22 - vendorHash = "sha256-bQREazHu0SQrMKyNPtUvzeKR/zb0FJOLpHBwHml43Hs="; 23 24 ldflags = [ 25 "-s"
··· 10 11 buildGoModule rec { 12 pname = "ov"; 13 + version = "0.31.0"; 14 15 src = fetchFromGitHub { 16 owner = "noborus"; 17 repo = "ov"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-UtYFr5eFdEU/oZqwy84W/GQiFrMPWRIomqgJY3P52Ws="; 20 }; 21 22 + vendorHash = "sha256-0Gs/GFlAl+ttprAVq9NxRLYzP/U2PD4IrY+drSIWJ/c="; 23 24 ldflags = [ 25 "-s"
+2
pkgs/top-level/all-packages.nix
··· 14415 14416 wdisplays = callPackage ../tools/graphics/wdisplays { }; 14417 14418 webalizer = callPackage ../tools/networking/webalizer { }; 14419 14420 wget = callPackage ../tools/networking/wget { };
··· 14415 14416 wdisplays = callPackage ../tools/graphics/wdisplays { }; 14417 14418 + weaviate = callPackage ../servers/search/weaviate { }; 14419 + 14420 webalizer = callPackage ../tools/networking/webalizer { }; 14421 14422 wget = callPackage ../tools/networking/wget { };