···32323333- Julia environments can now be built with arbitrary packages from the ecosystem using the `.withPackages` function. For example: `julia.withPackages ["Plots"]`.
34343535+- The PipeWire and WirePlumber modules have removed support for using
3636+`environment.etc."pipewire/..."` and `environment.etc."wireplumber/..."`.
3737+Use `services.pipewire.extraConfig` or `services.pipewire.configPackages` for PipeWire and
3838+`services.pipewire.wireplumber.configPackages` for WirePlumber instead."
3939+3540- A new option `systemd.sysusers.enable` was added. If enabled, users and
3641 groups are created with systemd-sysusers instead of with a custom perl script.
3742···140145- `himalaya` was updated to `v1.0.0-beta.3`, which introduces breaking changes. Check out the [release note](https://github.com/soywod/himalaya/releases/tag/v1.0.0-beta.3) for details.
141146142147- The `power.ups` module now generates `upsd.conf`, `upsd.users` and `upsmon.conf` automatically from a set of new configuration options. This breaks compatibility with existing `power.ups` setups where these files were created manually. Back up these files before upgrading NixOS.
148148+149149+- `programs.nix-ld.libraries` no longer sets `baseLibraries` via the option's default but in config and now merges any additional libraries with the default ones.
150150+ This means that `lib.mkForce` must be used to clear the list of default libraries.
143151144152- `pdns` was updated to version [v4.9.x](https://doc.powerdns.com/authoritative/changelog/4.9.html), which introduces breaking changes. Check out the [Upgrade Notes](https://doc.powerdns.com/authoritative/upgrading.html#to-4-9-0) for details.
145153···440448 (such as msmtp or Postfix). It no longer requires using a special ZFS build with email support.
441449442450- `nextcloud-setup.service` no longer changes the group of each file & directory inside `/var/lib/nextcloud/{config,data,store-apps}` if one of these directories has the wrong owner group. This was part of transitioning the group used for `/var/lib/nextcloud`, but isn't necessary anymore.
451451+452452+- `services.kavita` now uses the freeform option `services.kavita.settings` for the application settings file.
453453+ The options `services.kavita.ipAdresses` and `services.kavita.port` now exist at `services.kavita.settings.IpAddresses`
454454+ and `services.kavita.settings.IpAddresses`.
443455444456- The `krb5` module has been rewritten and moved to `security.krb5`, moving all options but `security.krb5.enable` and `security.krb5.package` into `security.krb5.settings`.
445457
···11+{ config, lib, ... }:
22+33+with lib;
44+55+let
66+ cfg = config.services.scion;
77+in
88+{
99+ options.services.scion = {
1010+ enable = mkEnableOption (lib.mdDoc "all of the scion components and services");
1111+ bypassBootstrapWarning = mkOption {
1212+ type = types.bool;
1313+ default = false;
1414+ description = lib.mdDoc ''
1515+ bypass Nix warning about SCION PKI bootstrapping
1616+ '';
1717+ };
1818+ };
1919+ config = mkIf cfg.enable {
2020+ services.scion = {
2121+ scion-dispatcher.enable = true;
2222+ scion-daemon.enable = true;
2323+ scion-router.enable = true;
2424+ scion-control.enable = true;
2525+ };
2626+ assertions = [
2727+ { assertion = cfg.bypassBootstrapWarning == true;
2828+ message = ''
2929+ SCION is a routing protocol and requires bootstrapping with a manual, imperative key signing ceremony. You may want to join an existing Isolation Domain (ISD) such as scionlab.org, or bootstrap your own. If you have completed and configured the public key infrastructure for SCION and are sure this process is complete, then add the following to your configuration:
3030+3131+ services.scion.bypassBootstrapWarning = true;
3232+3333+ refer to docs.scion.org for more information
3434+ '';
3535+ }
3636+ ];
3737+ };
3838+}
3939+
+2-2
nixos/modules/services/security/usbguard.nix
···8080 };
81818282 implicitPolicyTarget = mkOption {
8383- type = policy;
8383+ type = types.enum [ "allow" "block" "reject" ];
8484 default = "block";
8585 description = lib.mdDoc ''
8686 How to treat USB devices that don't match any rule in the policy.
···110110 };
111111112112 insertedDevicePolicy = mkOption {
113113- type = policy;
113113+ type = types.enum [ "block" "reject" "apply-policy" ];
114114 default = "apply-policy";
115115 description = lib.mdDoc ''
116116 How to treat USB devices that are already connected after the daemon
+43-20
nixos/modules/services/web-apps/kavita.nix
···2233let
44 cfg = config.services.kavita;
55-in {
55+ settingsFormat = pkgs.formats.json { };
66+ appsettings = settingsFormat.generate "appsettings.json" ({ TokenKey = "@TOKEN@"; } // cfg.settings);
77+in
88+{
99+ imports = [
1010+ (lib.mkChangedOptionModule [ "services" "kavita" "ipAdresses" ] [ "services" "kavita" "settings" "IpAddresses" ] (config:
1111+ let value = lib.getAttrFromPath [ "services" "kavita" "ipAdresses" ] config; in
1212+ lib.concatStringsSep "," value
1313+ ))
1414+ (lib.mkRenamedOptionModule [ "services" "kavita" "port" ] [ "services" "kavita" "settings" "Port" ])
1515+ ];
1616+617 options.services.kavita = {
718 enable = lib.mkEnableOption (lib.mdDoc "Kavita reading server");
819···2738 It can be generated with `head -c 32 /dev/urandom | base64`.
2839 '';
2940 };
3030- port = lib.mkOption {
3131- default = 5000;
3232- type = lib.types.port;
3333- description = lib.mdDoc "Port to bind to.";
3434- };
3535- ipAdresses = lib.mkOption {
3636- default = ["0.0.0.0" "::"];
3737- type = lib.types.listOf lib.types.str;
3838- description = lib.mdDoc "IP Addresses to bind to. The default is to bind
3939- to all IPv4 and IPv6 addresses.";
4141+4242+ settings = lib.mkOption {
4343+ default = { };
4444+ description = lib.mdDoc ''
4545+ Kavita configuration options, as configured in {file}`appsettings.json`.
4646+ '';
4747+ type = lib.types.submodule {
4848+ freeformType = settingsFormat.type;
4949+5050+ options = {
5151+ Port = lib.mkOption {
5252+ default = 5000;
5353+ type = lib.types.port;
5454+ description = lib.mdDoc "Port to bind to.";
5555+ };
5656+5757+ IpAddresses = lib.mkOption {
5858+ default = "0.0.0.0,::";
5959+ type = lib.types.commas;
6060+ description = lib.mdDoc ''
6161+ IP Addresses to bind to. The default is to bind to all IPv4 and IPv6 addresses.
6262+ '';
6363+ };
6464+ };
6565+ };
4066 };
4167 };
4268···4672 wantedBy = [ "multi-user.target" ];
4773 after = [ "network.target" ];
4874 preStart = ''
4949- umask u=rwx,g=rx,o=
5050- cat > "${cfg.dataDir}/config/appsettings.json" <<EOF
5151- {
5252- "TokenKey": "$(cat ${cfg.tokenKeyFile})",
5353- "Port": ${toString cfg.port},
5454- "IpAddresses": "${lib.concatStringsSep "," cfg.ipAdresses}"
5555- }
5656- EOF
7575+ install -m600 ${appsettings} ${lib.escapeShellArg cfg.dataDir}/config/appsettings.json
7676+ ${pkgs.replace-secret}/bin/replace-secret '@TOKEN@' \
7777+ ''${CREDENTIALS_DIRECTORY}/token \
7878+ '${cfg.dataDir}/config/appsettings.json'
5779 '';
5880 serviceConfig = {
5981 WorkingDirectory = cfg.dataDir;
6060- ExecStart = "${lib.getExe cfg.package}";
8282+ LoadCredential = [ "token:${cfg.tokenKeyFile}" ];
8383+ ExecStart = lib.getExe cfg.package;
6184 Restart = "always";
6285 User = cfg.user;
6386 };
···11+This NixOS VM test implements the network topology outlined in https://github.com/scionproto/scion/blob/27983125bccac6b84d1f96f406853aab0e460405/doc/tutorials/deploy.rst#sample-scion-demo-topology, below is an excerpt from that document
22+33+Sample SCION Demo Topology
44+..........................
55+66+The topology of the ISD includes the inter-AS connections to neighboring ASes, and defines the underlay IP/UDP addresses of services and routers running in this AS. This is specified in topology files - this guide later explains how to configure these files. A following graphic depicts the topology on a high level.
77+88+.. figure:: https://github.com/scionproto/scion/raw/27983125bccac6b84d1f96f406853aab0e460405/doc/tutorials/deploy/SCION-deployment-guide.drawio.png
99+ :width: 95 %
1010+ :figwidth: 100 %
1111+1212+ *Figure 1 - Topology of the sample SCION demo environment. It consists of 1 ISD, 3 core ASes and 2 non-core ASes.*
···11+{ lib,
22+ stdenv,
33+ fetchzip,
44+ jre,
55+ perl,
66+ makeWrapper,
77+ imagemagick,
88+ makeDesktopItem,
99+ copyDesktopItems,
1010+ desktopToDarwinBundle,
1111+ testers
1212+}:
1313+1414+stdenv.mkDerivation (finalAttrs: {
1515+ pname = "fastqc";
1616+ version = "0.12.1";
1717+1818+ src = fetchzip {
1919+ url = "https://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v${finalAttrs.version}.zip";
2020+ hash = "sha256-TenRG2x8ivJ2HM2ZpLaJShp0yI0Qc6K5lW5/NJFAa1I";
2121+ };
2222+2323+ dontBuild = true;
2424+2525+ nativeBuildInputs = [ makeWrapper imagemagick ]
2626+ ++ lib.optional stdenv.isLinux copyDesktopItems # postInstallHook
2727+ ++ lib.optional stdenv.isDarwin desktopToDarwinBundle; #fixupOutputHook
2828+ buildInputs = [ jre perl];
2929+3030+ desktopItem = (makeDesktopItem {
3131+ name = "FastQC";
3232+ exec = "fastqc";
3333+ icon = "fastqc";
3434+ desktopName = "FastQC";
3535+ comment = finalAttrs.meta.description;
3636+ categories = [ "Science" ];
3737+ });
3838+ desktopItems = [ finalAttrs.desktopItem ];
3939+4040+ installPhase = ''
4141+ runHook preInstall
4242+4343+ mkdir -p $out/{bin,FastQC}
4444+ cp -r $src/* $out/FastQC
4545+4646+ # Create desktop item
4747+ mkdir -p $out/share/{applications,icons}
4848+ # Freedesktop doesn't support windows ICO files. Use imagemagick to convert it to PNG
4949+ convert $out/FastQC/fastqc_icon.ico $out/share/icons/fastqc.png
5050+5151+ runHook postInstall
5252+ '';
5353+5454+ preFixup = ''
5555+ makeWrapper $out/FastQC/fastqc $out/bin/fastqc --prefix PATH : ${jre}/bin
5656+ '';
5757+5858+ passthru.tests.version = testers.testVersion {
5959+ package = finalAttrs.finalPackage;
6060+ version = "v${finalAttrs.version}";
6161+ };
6262+6363+ meta = {
6464+ description = "A quality control application for high throughput sequence data";
6565+ longDescription = ''
6666+ FastQC aims to provide a simple way to do some quality control checks on raw sequence data coming from high throughput sequencing pipelines. It provides a modular set of analyses which you can use to give a quick impression of whether your data has any problems of which you should be aware before doing any further analysis.
6767+6868+ The main functions of FastQC are
6969+7070+ - Import of data from BAM, SAM or FastQ files (any variant)
7171+ - Providing a quick overview to tell you in which areas there may be problems
7272+ - Summary graphs and tables to quickly assess your data
7373+ - Export of results to an HTML based permanent report
7474+ - Offline operation to allow automated generation of reports without running the interactive application
7575+ '';
7676+ homepage = "https://www.bioinformatics.babraham.ac.uk/projects/fastqc/";
7777+ sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
7878+ license = with lib.licenses; [ gpl3Plus asl20 ];
7979+ maintainers = [ lib.maintainers.dflores ];
8080+ mainProgram = "fastqc";
8181+ platforms = lib.platforms.unix;
8282+ };
8383+})
···11+Remove upstream workarounds for CMake "limitations" that do not appear to exist
22+in nixpkgs build environment, but rather break the build, presumably because
33+CMAKE_INSTALL_{BIN,LIB}DIR is an absolute path in our build so
44+CMAKE_INSTALL_PREFIX has no effect.
55+66+diff --git a/devices/CMakeLists.txt b/devices/CMakeLists.txt
77+index d5111cd..43986ad 100644
88+--- a/devices/CMakeLists.txt
99++++ b/devices/CMakeLists.txt
1010+@@ -53,7 +53,6 @@ if(OIDN_DEVICE_CUDA)
1111+ -DCMAKE_CXX_COMPILER:FILEPATH=${_host_compiler}
1212+ -DCMAKE_TOOLCHAIN_FILE:FILEPATH=${CMAKE_TOOLCHAIN_FILE}
1313+ -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE}
1414+- -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_CURRENT_BINARY_DIR}/cuda/preinstall
1515+ -DCMAKE_INSTALL_BINDIR:PATH=${CMAKE_INSTALL_BINDIR}
1616+ -DCMAKE_INSTALL_LIBDIR:PATH=${CMAKE_INSTALL_LIBDIR}
1717+ -DCUDAToolkit_ROOT:PATH=${CUDAToolkit_ROOT}
1818+@@ -69,14 +68,6 @@ if(OIDN_DEVICE_CUDA)
1919+ DEPENDS
2020+ OpenImageDenoise_core
2121+ )
2222+-
2323+- # Due to limitations of CMake, the module is pre-installed at build time to a temporary location,
2424+- # and then copied to the real install location at install time.
2525+- install(DIRECTORY
2626+- ${CMAKE_CURRENT_BINARY_DIR}/cuda/preinstall/
2727+- DESTINATION "."
2828+- USE_SOURCE_PERMISSIONS
2929+- )
3030+ endif()
3131+3232+ if(OIDN_DEVICE_HIP)
···1313 if x11Mode then "linux-x11"
1414 else if qtMode then "linux-qt4"
1515 else if stdenv.hostPlatform.isLinux then "linux"
1616- else if stdenv.hostPlatform.isDarwin then "macosx10.10"
1616+ else if stdenv.hostPlatform.isDarwin then "macosx10.14"
1717 # We probably want something different for Darwin
1818 else "unix";
1919 userDir = "~/.config/nethack";
···6666 -e 's,^HACKDIR=.*$,HACKDIR=\$(PREFIX)/games/lib/\$(GAME)dir,' \
6767 -e 's,^SHELLDIR=.*$,SHELLDIR=\$(PREFIX)/games,' \
6868 -e 's,^CFLAGS=-g,CFLAGS=,' \
6969- -i sys/unix/hints/macosx10.10
6969+ -i sys/unix/hints/macosx10.14
7070 sed -e '/define CHDIR/d' -i include/config.h
7171 ${lib.optionalString qtMode ''
7272 sed \
···1010 ]
1111 },
1212 "calendar": {
1313- "sha256": "18mi6ccq640jq21hmir35v2967h07bjv226072d9qz5qkzkmrhss",
1414- "url": "https://github.com/nextcloud-releases/calendar/releases/download/v4.6.5/calendar-v4.6.5.tar.gz",
1515- "version": "4.6.5",
1313+ "sha256": "18hlk6j3dzpcd61sgn8r8zmcc9d1bklq030kwyn4mzr20dcf75w5",
1414+ "url": "https://github.com/nextcloud-releases/calendar/releases/download/v4.6.7/calendar-v4.6.7.tar.gz",
1515+ "version": "4.6.7",
1616 "description": "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.",
1717 "homepage": "https://github.com/nextcloud/calendar/",
1818 "licenses": [
···2020 ]
2121 },
2222 "contacts": {
2323- "sha256": "0g6pbzm7bxllpkf9jqkrb3ys8xvbmayxc3rqwspalzckayjbz98m",
2424- "url": "https://github.com/nextcloud-releases/contacts/releases/download/v5.5.2/contacts-v5.5.2.tar.gz",
2525- "version": "5.5.2",
2323+ "sha256": "0xyrkr5p7xa8cn33kgx1hyblpbsdzaakpfm5bk6w9sm71a42688w",
2424+ "url": "https://github.com/nextcloud-releases/contacts/releases/download/v5.5.3/contacts-v5.5.3.tar.gz",
2525+ "version": "5.5.3",
2626 "description": "The Nextcloud contacts app is a user interface for Nextcloud's CardDAV server. Easily sync contacts from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Mail and Calendar – more to come.\n* 🎉 **Never forget a birthday!** You can sync birthdays and other recurring events with your Nextcloud Calendar.\n* 👥 **Sharing of Adressbooks!** You want to share your contacts with your friends or coworkers? No problem!\n* 🙈 **We’re not reinventing the wheel!** Based on the great and open SabreDAV library.",
2727 "homepage": "https://github.com/nextcloud/contacts#readme",
2828 "licenses": [
···160160 ]
161161 },
162162 "memories": {
163163- "sha256": "1j3296d3arkr9344zzv6ynhg842ym36a1bp1r3y6m8wp552m5gay",
164164- "url": "https://github.com/pulsejet/memories/releases/download/v6.2.2/memories.tar.gz",
165165- "version": "6.2.2",
163163+ "sha256": "0638120x6byp35gslcr2yg4rswihjjdssnjw87fxx7q41sd02vsz",
164164+ "url": "https://github.com/pulsejet/memories/releases/download/v7.0.2/memories.tar.gz",
165165+ "version": "7.0.2",
166166 "description": "# Memories: Photo Management for Nextcloud\n\nMemories is a *batteries-included* photo management solution for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Work from any device, of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates and other metadata on photos quickly and in bulk.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **📹 Video Transcoding**: Transcode videos and use HLS for maximal performance.\n- **🗺️ Map**: View your photos on a map, tagged with accurate reverse geocoding.\n- **📦 Migration**: Migrate easily from Nextcloud Photos and Google Takeout.\n- **⚡️ Performance**: Do all this very fast.\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store (try a demo [here](https://demo.memories.gallery/apps/memories/)).\n1. Perform the recommended [configuration steps](https://memories.gallery/config/).\n1. Run `php occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos.",
167167 "homepage": "https://memories.gallery",
168168 "licenses": [
···200200 ]
201201 },
202202 "notify_push": {
203203- "sha256": "1inq39kdfynip4j9hfrgybiscgii7r0wkjb5pssvmqknbpqf7x4g",
204204- "url": "https://github.com/nextcloud-releases/notify_push/releases/download/v0.6.9/notify_push-v0.6.9.tar.gz",
205205- "version": "0.6.9",
203203+ "sha256": "0zsjr3zr8c686pkgsmhjg1ssnzvc9flkyy1x571wk7lx7lfrvrd1",
204204+ "url": "https://github.com/nextcloud-releases/notify_push/releases/download/v0.6.10/notify_push-v0.6.10.tar.gz",
205205+ "version": "0.6.10",
206206 "description": "Push update support for desktop app.\n\nOnce the app is installed, the push binary needs to be setup. You can either use the setup wizard with `occ notify_push:setup` or see the [README](http://github.com/nextcloud/notify_push) for detailed setup instructions",
207207 "homepage": "",
208208 "licenses": [
···290290 ]
291291 },
292292 "twofactor_nextcloud_notification": {
293293- "sha256": "0gaqgzbryim580dxarak7p4g3wd8wp3w6lw9jhl84jh46wrsbrj8",
294294- "url": "https://github.com/nextcloud-releases/twofactor_nextcloud_notification/releases/download/v3.8.0/twofactor_nextcloud_notification-v3.8.0.tar.gz",
295295- "version": "3.8.0",
293293+ "sha256": "0qpg6i6iw6ldnryf0p56kd7fgs5vyckw9m6yjcf8r4j3mwfka273",
294294+ "url": "https://github.com/nextcloud-releases/twofactor_nextcloud_notification/releases/download/v3.9.0/twofactor_nextcloud_notification-v3.9.0.tar.gz",
295295+ "version": "3.9.0",
296296 "description": "Allows using any of your logged in devices as second factor",
297297 "homepage": "https://github.com/nextcloud/twofactor_nextcloud_notification",
298298 "licenses": [
···300300 ]
301301 },
302302 "twofactor_webauthn": {
303303- "sha256": "1p4ng7nprlcgw7sdfd7wqx5az86a856f1v470lahg2nfbx3fg296",
304304- "url": "https://github.com/nextcloud-releases/twofactor_webauthn/releases/download/v1.3.2/twofactor_webauthn-v1.3.2.tar.gz",
305305- "version": "1.3.2",
303303+ "sha256": "0llxakzcdcy9hscyzw3na5zp1p57h03w5fmm0gs9g62k1b88k6kw",
304304+ "url": "https://github.com/nextcloud-releases/twofactor_webauthn/releases/download/v1.4.0/twofactor_webauthn-v1.4.0.tar.gz",
305305+ "version": "1.4.0",
306306 "description": "A two-factor provider for WebAuthn devices",
307307 "homepage": "https://github.com/nextcloud/twofactor_webauthn#readme",
308308 "licenses": [
···320320 ]
321321 },
322322 "user_oidc": {
323323- "sha256": "06w6r1cmrahh9kr6rxc3nmy9q4m8fmf6afwgkvah3xixqnq04iwb",
324324- "url": "https://github.com/nextcloud-releases/user_oidc/releases/download/v5.0.1/user_oidc-v5.0.1.tar.gz",
325325- "version": "5.0.1",
323323+ "sha256": "0nl716c8jx6hhpkxjdpbldlnqhh6jsm6xx1zmcmvkzkdr9pjkggj",
324324+ "url": "https://github.com/nextcloud-releases/user_oidc/releases/download/v5.0.2/user_oidc-v5.0.2.tar.gz",
325325+ "version": "5.0.2",
326326 "description": "Allows flexible configuration of an OIDC server as Nextcloud login user backend.",
327327 "homepage": "https://github.com/nextcloud/user_oidc",
328328 "licenses": [
···330330 ]
331331 },
332332 "user_saml": {
333333- "sha256": "0rsrbbdvf8kb9l6afz86af33ri0ng9yj7d4xw28j50mfcx3kifg3",
334334- "url": "https://github.com/nextcloud-releases/user_saml/releases/download/v5.2.6/user_saml-v5.2.6.tar.gz",
335335- "version": "5.2.6",
333333+ "sha256": "0cvlspkrcm3anxpz4lca464d66672slqq2laa7gn7sd1b9yl9nx8",
334334+ "url": "https://github.com/nextcloud-releases/user_saml/releases/download/v5.2.7/user_saml-v5.2.7.tar.gz",
335335+ "version": "5.2.7",
336336 "description": "Using the SSO & SAML app of your Nextcloud you can make it easily possible to integrate your existing Single-Sign-On solution with Nextcloud. In addition, you can use the Nextcloud LDAP user provider to keep the convenience for users. (e.g. when sharing)\nThe following providers are supported and tested at the moment:\n\n* **SAML 2.0**\n\t* OneLogin\n\t* Shibboleth\n\t* Active Directory Federation Services (ADFS)\n\n* **Authentication via Environment Variable**\n\t* Kerberos (mod_auth_kerb)\n\t* Any other provider that authenticates using the environment variable\n\nWhile theoretically any other authentication provider implementing either one of those standards is compatible, we like to note that they are not part of any internal test matrix.",
337337 "homepage": "https://github.com/nextcloud/user_saml",
338338 "licenses": [
+29-29
pkgs/servers/nextcloud/packages/27.json
···1010 ]
1111 },
1212 "calendar": {
1313- "sha256": "18mi6ccq640jq21hmir35v2967h07bjv226072d9qz5qkzkmrhss",
1414- "url": "https://github.com/nextcloud-releases/calendar/releases/download/v4.6.5/calendar-v4.6.5.tar.gz",
1515- "version": "4.6.5",
1313+ "sha256": "18hlk6j3dzpcd61sgn8r8zmcc9d1bklq030kwyn4mzr20dcf75w5",
1414+ "url": "https://github.com/nextcloud-releases/calendar/releases/download/v4.6.7/calendar-v4.6.7.tar.gz",
1515+ "version": "4.6.7",
1616 "description": "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.",
1717 "homepage": "https://github.com/nextcloud/calendar/",
1818 "licenses": [
···2020 ]
2121 },
2222 "contacts": {
2323- "sha256": "0g6pbzm7bxllpkf9jqkrb3ys8xvbmayxc3rqwspalzckayjbz98m",
2424- "url": "https://github.com/nextcloud-releases/contacts/releases/download/v5.5.2/contacts-v5.5.2.tar.gz",
2525- "version": "5.5.2",
2323+ "sha256": "0xyrkr5p7xa8cn33kgx1hyblpbsdzaakpfm5bk6w9sm71a42688w",
2424+ "url": "https://github.com/nextcloud-releases/contacts/releases/download/v5.5.3/contacts-v5.5.3.tar.gz",
2525+ "version": "5.5.3",
2626 "description": "The Nextcloud contacts app is a user interface for Nextcloud's CardDAV server. Easily sync contacts from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Mail and Calendar – more to come.\n* 🎉 **Never forget a birthday!** You can sync birthdays and other recurring events with your Nextcloud Calendar.\n* 👥 **Sharing of Adressbooks!** You want to share your contacts with your friends or coworkers? No problem!\n* 🙈 **We’re not reinventing the wheel!** Based on the great and open SabreDAV library.",
2727 "homepage": "https://github.com/nextcloud/contacts#readme",
2828 "licenses": [
···4040 ]
4141 },
4242 "cospend": {
4343- "sha256": "1wxhhyd47gw14y3wl7c41agwa29k0nymys91p24x3dhd0nm61h1y",
4444- "url": "https://github.com/julien-nc/cospend-nc/releases/download/v1.6.0/cospend-1.6.0.tar.gz",
4545- "version": "1.6.0",
4343+ "sha256": "04cpsd638p8midpznbz0nhdmcm5zfgq9n6yh1xifnvmfkd5k2wj0",
4444+ "url": "https://github.com/julien-nc/cospend-nc/releases/download/v1.6.1/cospend-1.6.1.tar.gz",
4545+ "version": "1.6.1",
4646 "description": "# Nextcloud Cospend 💰\n\nNextcloud Cospend is a group/shared budget manager. It was inspired by the great [IHateMoney](https://github.com/spiral-project/ihatemoney/).\n\nYou can use it when you share a house, when you go on vacation with friends, whenever you share expenses with a group of people.\n\nIt lets you create projects with members and bills. Each member has a balance computed from the project bills. Balances are not an absolute amount of money at members disposal but rather a relative information showing if a member has spent more for the group than the group has spent for her/him, independently of exactly who spent money for whom. This way you can see who owes the group and who the group owes. Ultimately you can ask for a settlement plan telling you which payments to make to reset members balances.\n\nProject members are independent from Nextcloud users. Projects can be shared with other Nextcloud users or via public links.\n\n[MoneyBuster](https://gitlab.com/eneiluj/moneybuster) Android client is [available in F-Droid](https://f-droid.org/packages/net.eneiluj.moneybuster/) and on the [Play store](https://play.google.com/store/apps/details?id=net.eneiluj.moneybuster).\n\n[PayForMe](https://github.com/mayflower/PayForMe) iOS client is currently under developpement!\n\nThe private and public APIs are documented using [the Nextcloud OpenAPI extractor](https://github.com/nextcloud/openapi-extractor/). This documentation can be accessed directly in Nextcloud. All you need is to install Cospend (>= v1.6.0) and use the [the OCS API Viewer app](https://apps.nextcloud.com/apps/ocs_api_viewer) to browse the OpenAPI documentation.\n\n## Features\n\n* ✎ Create/edit/delete projects, members, bills, bill categories, currencies\n* ⚖ Check member balances\n* 🗠 Display project statistics\n* ♻ Display settlement plan\n* Move bills from one project to another\n* Move bills to trash before actually deleting them\n* Archive old projects before deleting them\n* 🎇 Automatically create reimbursement bills from settlement plan\n* 🗓 Create recurring bills (day/week/month/year)\n* 📊 Optionally provide custom amount for each member in new bills\n* 🔗 Link personal files to bills (picture of physical receipt for example)\n* 👩 Public links for people outside Nextcloud (can be password protected)\n* 👫 Share projects with Nextcloud users/groups/circles\n* 🖫 Import/export projects as csv (compatible with csv files from IHateMoney and SplitWise)\n* 🔗 Generate link/QRCode to easily add projects in MoneyBuster\n* 🗲 Implement Nextcloud notifications and activity stream\n\nThis app usually support the 2 or 3 last major versions of Nextcloud.\n\nThis app is under development.\n\n🌍 Help us to translate this app on [Nextcloud-Cospend/MoneyBuster Crowdin project](https://crowdin.com/project/moneybuster).\n\n⚒ Check out other ways to help in the [contribution guidelines](https://github.com/julien-nc/cospend-nc/blob/master/CONTRIBUTING.md).\n\n## Documentation\n\n* [User documentation](https://github.com/julien-nc/cospend-nc/blob/master/docs/user.md)\n* [Admin documentation](https://github.com/julien-nc/cospend-nc/blob/master/docs/admin.md)\n* [Developer documentation](https://github.com/julien-nc/cospend-nc/blob/master/docs/dev.md)\n* [CHANGELOG](https://github.com/julien-nc/cospend-nc/blob/master/CHANGELOG.md#change-log)\n* [AUTHORS](https://github.com/julien-nc/cospend-nc/blob/master/AUTHORS.md#authors)\n\n## Known issues\n\n* It does not make you rich\n\nAny feedback will be appreciated.\n\n\n\n## Donation\n\nI develop this app during my free time.\n\n* [Donate with Paypal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66PALMY8SF5JE) (you don't need a paypal account)\n* [Donate with Liberapay : ](https://liberapay.com/eneiluj/donate)",
4747 "homepage": "https://github.com/julien-nc/cospend-nc",
4848 "licenses": [
···150150 ]
151151 },
152152 "maps": {
153153- "sha256": "1gyxg5xp4mpdrw8630nqcf5yk8cs7a0kvfik2q01p05d533phc4d",
154154- "url": "https://github.com/nextcloud/maps/releases/download/v1.2.0/maps-1.2.0.tar.gz",
153153+ "sha256": "049hrp79fj1bp9nk9isjrk427k238974x7gsj68jplxfrgq3sdkz",
154154+ "url": "https://github.com/nextcloud/maps/releases/download/v1.2.0-2-nightly/maps-1.2.0-2-nightly.tar.gz",
155155 "version": "1.2.0",
156156 "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.",
157157 "homepage": "https://github.com/nextcloud/maps",
···160160 ]
161161 },
162162 "memories": {
163163- "sha256": "1j3296d3arkr9344zzv6ynhg842ym36a1bp1r3y6m8wp552m5gay",
164164- "url": "https://github.com/pulsejet/memories/releases/download/v6.2.2/memories.tar.gz",
165165- "version": "6.2.2",
163163+ "sha256": "0638120x6byp35gslcr2yg4rswihjjdssnjw87fxx7q41sd02vsz",
164164+ "url": "https://github.com/pulsejet/memories/releases/download/v7.0.2/memories.tar.gz",
165165+ "version": "7.0.2",
166166 "description": "# Memories: Photo Management for Nextcloud\n\nMemories is a *batteries-included* photo management solution for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Work from any device, of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates and other metadata on photos quickly and in bulk.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **📹 Video Transcoding**: Transcode videos and use HLS for maximal performance.\n- **🗺️ Map**: View your photos on a map, tagged with accurate reverse geocoding.\n- **📦 Migration**: Migrate easily from Nextcloud Photos and Google Takeout.\n- **⚡️ Performance**: Do all this very fast.\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store (try a demo [here](https://demo.memories.gallery/apps/memories/)).\n1. Perform the recommended [configuration steps](https://memories.gallery/config/).\n1. Run `php occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos.",
167167 "homepage": "https://memories.gallery",
168168 "licenses": [
···200200 ]
201201 },
202202 "notify_push": {
203203- "sha256": "1inq39kdfynip4j9hfrgybiscgii7r0wkjb5pssvmqknbpqf7x4g",
204204- "url": "https://github.com/nextcloud-releases/notify_push/releases/download/v0.6.9/notify_push-v0.6.9.tar.gz",
205205- "version": "0.6.9",
203203+ "sha256": "0zsjr3zr8c686pkgsmhjg1ssnzvc9flkyy1x571wk7lx7lfrvrd1",
204204+ "url": "https://github.com/nextcloud-releases/notify_push/releases/download/v0.6.10/notify_push-v0.6.10.tar.gz",
205205+ "version": "0.6.10",
206206 "description": "Push update support for desktop app.\n\nOnce the app is installed, the push binary needs to be setup. You can either use the setup wizard with `occ notify_push:setup` or see the [README](http://github.com/nextcloud/notify_push) for detailed setup instructions",
207207 "homepage": "",
208208 "licenses": [
···290290 ]
291291 },
292292 "twofactor_nextcloud_notification": {
293293- "sha256": "0gaqgzbryim580dxarak7p4g3wd8wp3w6lw9jhl84jh46wrsbrj8",
294294- "url": "https://github.com/nextcloud-releases/twofactor_nextcloud_notification/releases/download/v3.8.0/twofactor_nextcloud_notification-v3.8.0.tar.gz",
295295- "version": "3.8.0",
293293+ "sha256": "0qpg6i6iw6ldnryf0p56kd7fgs5vyckw9m6yjcf8r4j3mwfka273",
294294+ "url": "https://github.com/nextcloud-releases/twofactor_nextcloud_notification/releases/download/v3.9.0/twofactor_nextcloud_notification-v3.9.0.tar.gz",
295295+ "version": "3.9.0",
296296 "description": "Allows using any of your logged in devices as second factor",
297297 "homepage": "https://github.com/nextcloud/twofactor_nextcloud_notification",
298298 "licenses": [
···300300 ]
301301 },
302302 "twofactor_webauthn": {
303303- "sha256": "1p4ng7nprlcgw7sdfd7wqx5az86a856f1v470lahg2nfbx3fg296",
304304- "url": "https://github.com/nextcloud-releases/twofactor_webauthn/releases/download/v1.3.2/twofactor_webauthn-v1.3.2.tar.gz",
305305- "version": "1.3.2",
303303+ "sha256": "0llxakzcdcy9hscyzw3na5zp1p57h03w5fmm0gs9g62k1b88k6kw",
304304+ "url": "https://github.com/nextcloud-releases/twofactor_webauthn/releases/download/v1.4.0/twofactor_webauthn-v1.4.0.tar.gz",
305305+ "version": "1.4.0",
306306 "description": "A two-factor provider for WebAuthn devices",
307307 "homepage": "https://github.com/nextcloud/twofactor_webauthn#readme",
308308 "licenses": [
···320320 ]
321321 },
322322 "user_oidc": {
323323- "sha256": "06w6r1cmrahh9kr6rxc3nmy9q4m8fmf6afwgkvah3xixqnq04iwb",
324324- "url": "https://github.com/nextcloud-releases/user_oidc/releases/download/v5.0.1/user_oidc-v5.0.1.tar.gz",
325325- "version": "5.0.1",
323323+ "sha256": "0nl716c8jx6hhpkxjdpbldlnqhh6jsm6xx1zmcmvkzkdr9pjkggj",
324324+ "url": "https://github.com/nextcloud-releases/user_oidc/releases/download/v5.0.2/user_oidc-v5.0.2.tar.gz",
325325+ "version": "5.0.2",
326326 "description": "Allows flexible configuration of an OIDC server as Nextcloud login user backend.",
327327 "homepage": "https://github.com/nextcloud/user_oidc",
328328 "licenses": [
···330330 ]
331331 },
332332 "user_saml": {
333333- "sha256": "0rsrbbdvf8kb9l6afz86af33ri0ng9yj7d4xw28j50mfcx3kifg3",
334334- "url": "https://github.com/nextcloud-releases/user_saml/releases/download/v5.2.6/user_saml-v5.2.6.tar.gz",
335335- "version": "5.2.6",
333333+ "sha256": "0cvlspkrcm3anxpz4lca464d66672slqq2laa7gn7sd1b9yl9nx8",
334334+ "url": "https://github.com/nextcloud-releases/user_saml/releases/download/v5.2.7/user_saml-v5.2.7.tar.gz",
335335+ "version": "5.2.7",
336336 "description": "Using the SSO & SAML app of your Nextcloud you can make it easily possible to integrate your existing Single-Sign-On solution with Nextcloud. In addition, you can use the Nextcloud LDAP user provider to keep the convenience for users. (e.g. when sharing)\nThe following providers are supported and tested at the moment:\n\n* **SAML 2.0**\n\t* OneLogin\n\t* Shibboleth\n\t* Active Directory Federation Services (ADFS)\n\n* **Authentication via Environment Variable**\n\t* Kerberos (mod_auth_kerb)\n\t* Any other provider that authenticates using the environment variable\n\nWhile theoretically any other authentication provider implementing either one of those standards is compatible, we like to note that they are not part of any internal test matrix.",
337337 "homepage": "https://github.com/nextcloud/user_saml",
338338 "licenses": [
+39-39
pkgs/servers/nextcloud/packages/28.json
···1010 ]
1111 },
1212 "calendar": {
1313- "sha256": "18mi6ccq640jq21hmir35v2967h07bjv226072d9qz5qkzkmrhss",
1414- "url": "https://github.com/nextcloud-releases/calendar/releases/download/v4.6.5/calendar-v4.6.5.tar.gz",
1515- "version": "4.6.5",
1313+ "sha256": "18hlk6j3dzpcd61sgn8r8zmcc9d1bklq030kwyn4mzr20dcf75w5",
1414+ "url": "https://github.com/nextcloud-releases/calendar/releases/download/v4.6.7/calendar-v4.6.7.tar.gz",
1515+ "version": "4.6.7",
1616 "description": "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* 🌐 **WebCal Support!** Want to see your favorite team’s matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚️ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 Search! Find your events at ease\n* ☑️ Tasks! See tasks with a due date directly in the calendar\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.",
1717 "homepage": "https://github.com/nextcloud/calendar/",
1818 "licenses": [
···2020 ]
2121 },
2222 "contacts": {
2323- "sha256": "0g6pbzm7bxllpkf9jqkrb3ys8xvbmayxc3rqwspalzckayjbz98m",
2424- "url": "https://github.com/nextcloud-releases/contacts/releases/download/v5.5.2/contacts-v5.5.2.tar.gz",
2525- "version": "5.5.2",
2323+ "sha256": "0xyrkr5p7xa8cn33kgx1hyblpbsdzaakpfm5bk6w9sm71a42688w",
2424+ "url": "https://github.com/nextcloud-releases/contacts/releases/download/v5.5.3/contacts-v5.5.3.tar.gz",
2525+ "version": "5.5.3",
2626 "description": "The Nextcloud contacts app is a user interface for Nextcloud's CardDAV server. Easily sync contacts from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Mail and Calendar – more to come.\n* 🎉 **Never forget a birthday!** You can sync birthdays and other recurring events with your Nextcloud Calendar.\n* 👥 **Sharing of Adressbooks!** You want to share your contacts with your friends or coworkers? No problem!\n* 🙈 **We’re not reinventing the wheel!** Based on the great and open SabreDAV library.",
2727 "homepage": "https://github.com/nextcloud/contacts#readme",
2828 "licenses": [
···4040 ]
4141 },
4242 "cospend": {
4343- "sha256": "1wxhhyd47gw14y3wl7c41agwa29k0nymys91p24x3dhd0nm61h1y",
4444- "url": "https://github.com/julien-nc/cospend-nc/releases/download/v1.6.0/cospend-1.6.0.tar.gz",
4545- "version": "1.6.0",
4343+ "sha256": "04cpsd638p8midpznbz0nhdmcm5zfgq9n6yh1xifnvmfkd5k2wj0",
4444+ "url": "https://github.com/julien-nc/cospend-nc/releases/download/v1.6.1/cospend-1.6.1.tar.gz",
4545+ "version": "1.6.1",
4646 "description": "# Nextcloud Cospend 💰\n\nNextcloud Cospend is a group/shared budget manager. It was inspired by the great [IHateMoney](https://github.com/spiral-project/ihatemoney/).\n\nYou can use it when you share a house, when you go on vacation with friends, whenever you share expenses with a group of people.\n\nIt lets you create projects with members and bills. Each member has a balance computed from the project bills. Balances are not an absolute amount of money at members disposal but rather a relative information showing if a member has spent more for the group than the group has spent for her/him, independently of exactly who spent money for whom. This way you can see who owes the group and who the group owes. Ultimately you can ask for a settlement plan telling you which payments to make to reset members balances.\n\nProject members are independent from Nextcloud users. Projects can be shared with other Nextcloud users or via public links.\n\n[MoneyBuster](https://gitlab.com/eneiluj/moneybuster) Android client is [available in F-Droid](https://f-droid.org/packages/net.eneiluj.moneybuster/) and on the [Play store](https://play.google.com/store/apps/details?id=net.eneiluj.moneybuster).\n\n[PayForMe](https://github.com/mayflower/PayForMe) iOS client is currently under developpement!\n\nThe private and public APIs are documented using [the Nextcloud OpenAPI extractor](https://github.com/nextcloud/openapi-extractor/). This documentation can be accessed directly in Nextcloud. All you need is to install Cospend (>= v1.6.0) and use the [the OCS API Viewer app](https://apps.nextcloud.com/apps/ocs_api_viewer) to browse the OpenAPI documentation.\n\n## Features\n\n* ✎ Create/edit/delete projects, members, bills, bill categories, currencies\n* ⚖ Check member balances\n* 🗠 Display project statistics\n* ♻ Display settlement plan\n* Move bills from one project to another\n* Move bills to trash before actually deleting them\n* Archive old projects before deleting them\n* 🎇 Automatically create reimbursement bills from settlement plan\n* 🗓 Create recurring bills (day/week/month/year)\n* 📊 Optionally provide custom amount for each member in new bills\n* 🔗 Link personal files to bills (picture of physical receipt for example)\n* 👩 Public links for people outside Nextcloud (can be password protected)\n* 👫 Share projects with Nextcloud users/groups/circles\n* 🖫 Import/export projects as csv (compatible with csv files from IHateMoney and SplitWise)\n* 🔗 Generate link/QRCode to easily add projects in MoneyBuster\n* 🗲 Implement Nextcloud notifications and activity stream\n\nThis app usually support the 2 or 3 last major versions of Nextcloud.\n\nThis app is under development.\n\n🌍 Help us to translate this app on [Nextcloud-Cospend/MoneyBuster Crowdin project](https://crowdin.com/project/moneybuster).\n\n⚒ Check out other ways to help in the [contribution guidelines](https://github.com/julien-nc/cospend-nc/blob/master/CONTRIBUTING.md).\n\n## Documentation\n\n* [User documentation](https://github.com/julien-nc/cospend-nc/blob/master/docs/user.md)\n* [Admin documentation](https://github.com/julien-nc/cospend-nc/blob/master/docs/admin.md)\n* [Developer documentation](https://github.com/julien-nc/cospend-nc/blob/master/docs/dev.md)\n* [CHANGELOG](https://github.com/julien-nc/cospend-nc/blob/master/CHANGELOG.md#change-log)\n* [AUTHORS](https://github.com/julien-nc/cospend-nc/blob/master/AUTHORS.md#authors)\n\n## Known issues\n\n* It does not make you rich\n\nAny feedback will be appreciated.\n\n\n\n## Donation\n\nI develop this app during my free time.\n\n* [Donate with Paypal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66PALMY8SF5JE) (you don't need a paypal account)\n* [Donate with Liberapay : ](https://liberapay.com/eneiluj/donate)",
4747 "homepage": "https://github.com/julien-nc/cospend-nc",
4848 "licenses": [
···6060 ]
6161 },
6262 "end_to_end_encryption": {
6363- "sha256": "1ih44vrgm3fsm4xk3sz9b5rxf54dva01cfy18gw4lpgn60c63isq",
6464- "url": "https://github.com/nextcloud-releases/end_to_end_encryption/releases/download/v1.14.1/end_to_end_encryption-v1.14.1.tar.gz",
6565- "version": "1.14.1",
6363+ "sha256": "1h9is67lbnvgnv6n9p07si0qcp6hgymlq7f07z8s2ckf04p0nzad",
6464+ "url": "https://github.com/nextcloud-releases/end_to_end_encryption/releases/download/v1.14.4/end_to_end_encryption-v1.14.4.tar.gz",
6565+ "version": "1.14.4",
6666 "description": "Provides the necessary endpoint to enable end-to-end encryption.\n\n**Notice:** E2EE is currently not compatible to be used together with server-side encryption",
6767 "homepage": "https://github.com/nextcloud/end_to_end_encryption",
6868 "licenses": [
···110110 ]
111111 },
112112 "integration_openai": {
113113- "sha256": "0qk0w5xiy9jrk29mpmzfsp0jya6i4si8n3m03kb05r225n4ya9ig",
114114- "url": "https://github.com/nextcloud-releases/integration_openai/releases/download/v1.2.0/integration_openai-v1.2.0.tar.gz",
115115- "version": "1.2.0",
113113+ "sha256": "0v8bpd74mvkc87jbqjkxcfhb728l0r85fsqjn1ahaj2g9xql07f6",
114114+ "url": "https://github.com/nextcloud-releases/integration_openai/releases/download/v1.2.1/integration_openai-v1.2.1.tar.gz",
115115+ "version": "1.2.1",
116116 "description": "This app includes 3 custom smart pickers for Nextcloud:\n* ChatGPT-like answers\n* Image generation (with DALL·E 2 or LocalAI)\n* Whisper dictation\n\nIt also implements\n\n* A Translation provider (using any available language model)\n* A SpeechToText provider (using Whisper)\n\nInstead of connecting to the OpenAI API for these, you can also connect to a self-hosted [LocalAI](https://localai.io) instance.\n\n## Ethical AI Rating\n### Rating for Text generation using ChatGPT via OpenAI API: 🔴\n\nNegative:\n* the software for training and inference of this model is proprietary, limiting running it locally or training by yourself\n* the trained model is not freely available, so the model can not be run on-premises\n* the training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model's performance and CO2 usage.\n\n\n### Rating for Translation using ChatGPT via OpenAI API: 🔴\n\nNegative:\n* the software for training and inference of this model is proprietary, limiting running it locally or training by yourself\n* the trained model is not freely available, so the model can not be run on-premises\n* the training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model's performance and CO2 usage.\n\n### Rating for Image generation using DALL·E via OpenAI API: 🔴\n\nNegative:\n* the software for training and inferencing of this model is proprietary, limiting running it locally or training by yourself\n* the trained model is not freely available, so the model can not be ran on-premises\n* the training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n\n### Rating for Speech-To-Text using Whisper via OpenAI API: 🟡\n\nPositive:\n* the software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can run on-premise\n\nNegative:\n* the training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n### Rating for Text generation via LocalAI: 🟢\n\nPositive:\n* the software for training and inferencing of this model is open source\n* the trained model is freely available, and thus can be ran on-premises\n* the training data is freely available, making it possible to check or correct for bias or optimise the performance and CO2 usage.\n\n\n### Rating for Image generation using Stable Diffusion via LocalAI : 🟡\n\nPositive:\n* the software for training and inferencing of this model is open source\n* the trained model is freely available, and thus can be ran on-premises\n\nNegative:\n* the training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n\n### Rating for Speech-To-Text using Whisper via LocalAI: 🟡\n\nPositive:\n* the software for training and inferencing of this model is open source\n* the trained model is freely available, and thus can be ran on-premises\n\nNegative:\n* the training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\nLearn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).",
117117 "homepage": "https://github.com/nextcloud/integration_openai",
118118 "licenses": [
···140140 ]
141141 },
142142 "memories": {
143143- "sha256": "1j3296d3arkr9344zzv6ynhg842ym36a1bp1r3y6m8wp552m5gay",
144144- "url": "https://github.com/pulsejet/memories/releases/download/v6.2.2/memories.tar.gz",
145145- "version": "6.2.2",
143143+ "sha256": "0638120x6byp35gslcr2yg4rswihjjdssnjw87fxx7q41sd02vsz",
144144+ "url": "https://github.com/pulsejet/memories/releases/download/v7.0.2/memories.tar.gz",
145145+ "version": "7.0.2",
146146 "description": "# Memories: Photo Management for Nextcloud\n\nMemories is a *batteries-included* photo management solution for Nextcloud with advanced features including:\n\n- **📸 Timeline**: Sort photos and videos by date taken, parsed from Exif data.\n- **⏪ Rewind**: Jump to any time in the past instantly and relive your memories.\n- **🤖 AI Tagging**: Group photos by people and objects, powered by [recognize](https://github.com/nextcloud/recognize) and [facerecognition](https://github.com/matiasdelellis/facerecognition).\n- **🖼️ Albums**: Create albums to group photos and videos together. Then share these albums with others.\n- **🫱🏻🫲🏻 External Sharing**: Share photos and videos with people outside of your Nextcloud instance.\n- **📱 Mobile Support**: Work from any device, of any shape and size through the web app.\n- **✏️ Edit Metadata**: Edit dates and other metadata on photos quickly and in bulk.\n- **📦 Archive**: Store photos you don't want to see in your timeline in a separate folder.\n- **📹 Video Transcoding**: Transcode videos and use HLS for maximal performance.\n- **🗺️ Map**: View your photos on a map, tagged with accurate reverse geocoding.\n- **📦 Migration**: Migrate easily from Nextcloud Photos and Google Takeout.\n- **⚡️ Performance**: Do all this very fast.\n\n## 🚀 Installation\n\n1. Install the app from the Nextcloud app store (try a demo [here](https://demo.memories.gallery/apps/memories/)).\n1. Perform the recommended [configuration steps](https://memories.gallery/config/).\n1. Run `php occ memories:index` to generate metadata indices for existing photos.\n1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos.",
147147 "homepage": "https://memories.gallery",
148148 "licenses": [
···170170 ]
171171 },
172172 "notify_push": {
173173- "sha256": "1inq39kdfynip4j9hfrgybiscgii7r0wkjb5pssvmqknbpqf7x4g",
174174- "url": "https://github.com/nextcloud-releases/notify_push/releases/download/v0.6.9/notify_push-v0.6.9.tar.gz",
175175- "version": "0.6.9",
173173+ "sha256": "0zsjr3zr8c686pkgsmhjg1ssnzvc9flkyy1x571wk7lx7lfrvrd1",
174174+ "url": "https://github.com/nextcloud-releases/notify_push/releases/download/v0.6.10/notify_push-v0.6.10.tar.gz",
175175+ "version": "0.6.10",
176176 "description": "Push update support for desktop app.\n\nOnce the app is installed, the push binary needs to be setup. You can either use the setup wizard with `occ notify_push:setup` or see the [README](http://github.com/nextcloud/notify_push) for detailed setup instructions",
177177 "homepage": "",
178178 "licenses": [
···230230 ]
231231 },
232232 "registration": {
233233- "sha256": "1bcvc1vmvgr21slx2bk5idagkvvkcglkjbrs3ki5y7w3ls0my4al",
234234- "url": "https://github.com/nextcloud-releases/registration/releases/download/v2.3.0/registration-v2.3.0.tar.gz",
235235- "version": "2.3.0",
233233+ "sha256": "1ih7nfswskzpgbqfjsn4lym4cwyq4kbjv9m9cmy4g4nx44gr0dkl",
234234+ "url": "https://github.com/nextcloud-releases/registration/releases/download/v2.4.0/registration-v2.4.0.tar.gz",
235235+ "version": "2.4.0",
236236 "description": "User registration\n\nThis app allows users to register a new account.\n\n# Features\n\n- Add users to a given group\n- Allow-list with email domains (including wildcard) to register with\n- Administrator will be notified via email for new user creation or require approval\n- Supports Nextcloud's Client Login Flow v1 and v2 - allowing registration in the mobile Apps and Desktop clients\n\n# Web form registration flow\n\n1. User enters their email address\n2. Verification link is sent to the email address\n3. User clicks on the verification link\n4. User is lead to a form where they can choose their username and password\n5. New account is created and is logged in automatically",
237237 "homepage": "https://github.com/nextcloud/registration",
238238 "licenses": [
···240240 ]
241241 },
242242 "spreed": {
243243- "sha256": "1kjlrjgclmz39a0zdjr6863cipv5i5fwaigasd2cfxx1r7zrd7sx",
244244- "url": "https://github.com/nextcloud-releases/spreed/releases/download/v18.0.4/spreed-v18.0.4.tar.gz",
245245- "version": "18.0.4",
243243+ "sha256": "1irkfcyv07ij564aigsrrg1glw78v9lm09126qwmbs6fbz1acxl2",
244244+ "url": "https://github.com/nextcloud-releases/spreed/releases/download/v18.0.5/spreed-v18.0.5.tar.gz",
245245+ "version": "18.0.5",
246246 "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",
247247 "homepage": "https://github.com/nextcloud/spreed",
248248 "licenses": [
···260260 ]
261261 },
262262 "twofactor_nextcloud_notification": {
263263- "sha256": "0gaqgzbryim580dxarak7p4g3wd8wp3w6lw9jhl84jh46wrsbrj8",
264264- "url": "https://github.com/nextcloud-releases/twofactor_nextcloud_notification/releases/download/v3.8.0/twofactor_nextcloud_notification-v3.8.0.tar.gz",
265265- "version": "3.8.0",
263263+ "sha256": "0qpg6i6iw6ldnryf0p56kd7fgs5vyckw9m6yjcf8r4j3mwfka273",
264264+ "url": "https://github.com/nextcloud-releases/twofactor_nextcloud_notification/releases/download/v3.9.0/twofactor_nextcloud_notification-v3.9.0.tar.gz",
265265+ "version": "3.9.0",
266266 "description": "Allows using any of your logged in devices as second factor",
267267 "homepage": "https://github.com/nextcloud/twofactor_nextcloud_notification",
268268 "licenses": [
···270270 ]
271271 },
272272 "twofactor_webauthn": {
273273- "sha256": "1p4ng7nprlcgw7sdfd7wqx5az86a856f1v470lahg2nfbx3fg296",
274274- "url": "https://github.com/nextcloud-releases/twofactor_webauthn/releases/download/v1.3.2/twofactor_webauthn-v1.3.2.tar.gz",
275275- "version": "1.3.2",
273273+ "sha256": "0llxakzcdcy9hscyzw3na5zp1p57h03w5fmm0gs9g62k1b88k6kw",
274274+ "url": "https://github.com/nextcloud-releases/twofactor_webauthn/releases/download/v1.4.0/twofactor_webauthn-v1.4.0.tar.gz",
275275+ "version": "1.4.0",
276276 "description": "A two-factor provider for WebAuthn devices",
277277 "homepage": "https://github.com/nextcloud/twofactor_webauthn#readme",
278278 "licenses": [
···280280 ]
281281 },
282282 "user_oidc": {
283283- "sha256": "06w6r1cmrahh9kr6rxc3nmy9q4m8fmf6afwgkvah3xixqnq04iwb",
284284- "url": "https://github.com/nextcloud-releases/user_oidc/releases/download/v5.0.1/user_oidc-v5.0.1.tar.gz",
285285- "version": "5.0.1",
283283+ "sha256": "0nl716c8jx6hhpkxjdpbldlnqhh6jsm6xx1zmcmvkzkdr9pjkggj",
284284+ "url": "https://github.com/nextcloud-releases/user_oidc/releases/download/v5.0.2/user_oidc-v5.0.2.tar.gz",
285285+ "version": "5.0.2",
286286 "description": "Allows flexible configuration of an OIDC server as Nextcloud login user backend.",
287287 "homepage": "https://github.com/nextcloud/user_oidc",
288288 "licenses": [
···290290 ]
291291 },
292292 "user_saml": {
293293- "sha256": "122bj8hqd4c554n07wjnwmqd4lp1j3440jbdjg45hwpnw2s8wlr5",
294294- "url": "https://github.com/nextcloud-releases/user_saml/releases/download/v6.1.1/user_saml-v6.1.1.tar.gz",
295295- "version": "6.1.1",
293293+ "sha256": "112nmngl99vfiqx39zbz6n8ajaifr02y5p0kcd5iz60qnf8za3kk",
294294+ "url": "https://github.com/nextcloud-releases/user_saml/releases/download/v6.1.2/user_saml-v6.1.2.tar.gz",
295295+ "version": "6.1.2",
296296 "description": "Using the SSO & SAML app of your Nextcloud you can make it easily possible to integrate your existing Single-Sign-On solution with Nextcloud. In addition, you can use the Nextcloud LDAP user provider to keep the convenience for users. (e.g. when sharing)\nThe following providers are supported and tested at the moment:\n\n* **SAML 2.0**\n\t* OneLogin\n\t* Shibboleth\n\t* Active Directory Federation Services (ADFS)\n\n* **Authentication via Environment Variable**\n\t* Kerberos (mod_auth_kerb)\n\t* Any other provider that authenticates using the environment variable\n\nWhile theoretically any other authentication provider implementing either one of those standards is compatible, we like to note that they are not part of any internal test matrix.",
297297 "homepage": "https://github.com/nextcloud/user_saml",
298298 "licenses": [
···3131 doCheck = true;
3232 nativeCheckInputs = [ lua51Packages.busted util-linux neovim ];
3333 # filter out one test that fails in the sandbox of nix
3434- checkPhase = ''
3434+ checkPhase = let
3535+ exclude-tags = if stdenv.isDarwin then "nix,mac" else "nix";
3636+ in ''
3537 runHook preCheck
3636- make test BUSTED='busted --output TAP --exclude-tags=nix'
3838+ make test BUSTED='busted --output TAP --exclude-tags=${exclude-tags}'
3739 runHook postCheck
3840 '';
39414042 meta = with lib; {
4141- broken = stdenv.isDarwin;
4243 description = "Use neovim as pager";
4344 longDescription = ''
4445 Use neovim as a pager to view manpages, diffs, etc with nvim's syntax
···607607 libcap_pam = throw "'libcap_pam' has been replaced with 'libcap'"; # Converted to throw 2023-09-10
608608 libclc = llvmPackages_latest.libclc; # Added 2023-10-28
609609 libcxxabi = throw "'libcxxabi' was merged into 'libcxx'"; # Converted to throw 2024-03-08
610610+ libdwarf_20210528 = throw "'libdwarf_20210528' has been removed because it is not used in nixpkgs, move to libdwarf"; # Added 2024-03-23
610611 libgme = game-music-emu; # Added 2022-07-20
611612 libgpgerror = libgpg-error; # Added 2021-09-04
612613 libheimdal = heimdal; # Added 2022-11-18
···11+lib: self: super: pkgs:
22+33+### Deprecated aliases - for backward compatibility
44+55+### Please maintain this list in ASCIIbetical ordering.
66+### Hint: the "sections" are delimited by ### <letter> ###
77+88+# These aliases should not be used within nixpkgs, but exist to improve
99+# backward compatibility in projects outside of nixpkgs. See the
1010+# documentation for the `allowAliases` option for more background.
1111+1212+# A script to convert old aliases to throws and remove old
1313+# throws can be found in './maintainers/scripts/remove-old-aliases.py'.
1414+1515+# Add 'preserve, reason: reason why' after the date if the alias should not be removed.
1616+# Try to keep them to a minimum.
1717+# valid examples of what to preserve:
1818+# distro aliases such as:
1919+# debian-package-name -> nixos-package-name
2020+2121+# pkgs is provided to allow packages to be moved out of the darwin attrset.
2222+2323+with self;
2424+2525+let
2626+ # Removing recurseForDerivation prevents derivations of aliased attribute set
2727+ # to appear while listing all the packages available.
2828+ removeRecurseForDerivations =
2929+ alias:
3030+ if alias.recurseForDerivations or false then
3131+ lib.removeAttrs alias [ "recurseForDerivations" ]
3232+ else
3333+ alias;
3434+3535+ # Disabling distribution prevents top-level aliases for non-recursed package
3636+ # sets from building on Hydra.
3737+ removeDistribute = alias: if lib.isDerivation alias then lib.dontDistribute alias else alias;
3838+3939+ # Make sure that we are not shadowing something from darwin-packages.nix.
4040+ checkInPkgs =
4141+ n: alias:
4242+ if builtins.hasAttr n super then throw "Alias ${n} is still in darwin-packages.nix" else alias;
4343+4444+ mapAliases = lib.mapAttrs (
4545+ n: alias: removeDistribute (removeRecurseForDerivations (checkInPkgs n alias))
4646+ );
4747+in
4848+4949+mapAliases ({
5050+ ### B ###
5151+5252+ builder = throw "'darwin.builder' has been changed and renamed to 'darwin.linux-builder'. The default ssh port is now 31022. Please update your configuration or override the port back to 22. See https://nixos.org/manual/nixpkgs/unstable/#sec-darwin-builder"; # added 2023-07-06
5353+})
+3-3
pkgs/top-level/darwin-packages.nix
···1818 fetchurlBoot = import ../build-support/fetchurl/boot.nix {
1919 inherit (stdenv) system;
2020 };
2121+2222+ aliases = self: super: lib.optionalAttrs config.allowAliases (import ../top-level/darwin-aliases.nix lib self super pkgs);
2123in
22242325makeScopeWithSplicing' {
2426 otherSplices = generateSplicesForMkScope "darwin";
2527 extra = spliced: spliced.apple_sdk.frameworks;
2626- f = (self: let
2828+ f = lib.extends aliases (self: let
2729 inherit (self) mkDerivation callPackage;
28302931 # Must use pkgs.callPackage to avoid infinite recursion.
···258260 modules = [ { nixpkgs.hostPlatform = "x86_64-linux"; } ];
259261 };
260262261261-} // lib.optionalAttrs config.allowAliases {
262262- builder = throw "'darwin.builder' has been changed and renamed to 'darwin.linux-builder'. The default ssh port is now 31022. Please update your configuration or override the port back to 22. See https://nixos.org/manual/nixpkgs/unstable/#sec-darwin-builder"; # added 2023-07-06
263263});
264264}