Commit Graph

62 Commits

Author SHA1 Message Date
Robert Schütz
1c7cd26c04 nextcloudPackages: update 2024-03-01 09:11:42 -08:00
Jonas Heinrich
15eed1f719 nextcloudPackages.integration_openai: init at 1.2.0, nextcloudPackages: update 2024-02-10 13:04:03 +01:00
Robert Schütz
bcc7e4cd4c nextcloudPackages.apps.keeweb: drop
According to https://apps.nextcloud.com/apps/keeweb

> KeeWeb itself not actively maintained since 2021 and may contain
> security issues.
2024-02-01 08:01:57 -08:00
Robert Schütz
b4c743066d nextcloudPackages: update 2024-02-01 08:01:52 -08:00
Sandro Jäckel
3823b98cb5
nextcloudPackages: update 2024-01-18 00:13:11 +01:00
Robert Schütz
a5930c2066 nextcloud*.packages.apps.gpoddersync: init at 3.8.2 2024-01-11 08:36:23 -08:00
Finn Landweber
02a4db061d
nextcloudPackages: update 2024-01-11 12:36:27 +01:00
Finn Landweber
4045c52a33
nextcloudPackages generate.sh: added jq dependency 2024-01-11 12:32:00 +01:00
BootRhetoric
0ba8e55516
nextcloudPackages: add end_to_end_encryption 2024-01-10 23:08:25 +01:00
Maximilian Bosch
4bcd4d5e45
nextcloud.packages.apps.user_oidc: init at 1.3.5
License is AGPL 3 and it's in fact the plus version after checking some
source files:

* https://github.com/nextcloud/user_oidc/blob/v1.3.5/lib/AppInfo/Application.php
* https://github.com/nextcloud/user_oidc/blob/v1.3.5/lib/Controller/ApiController.php
2024-01-01 21:48:47 +01:00
Maximilian Bosch
33eccb059a
nextcloud*.packages.apps: update 2024-01-01 21:48:30 +01:00
Maximilian Bosch
6e2493e7f8
nextcloudPackages.apps.phonetrack: init at 0.7.6 (for nc26) & 0.7.7 (for nc27, nc28)
Self-hostable alternative to "Find my" tooling from Apple or Google
(minus remote wipe via Bluetooth, though).

License is AGPL 3.0 or later[1].

See also https://apps.nextcloud.com/apps/phonetrack.

[1] Unfortunately the license identifier is only `agpl` everywhere,
    however the source files confirm that it's "or later":
    https://github.com/julien-nc/phonetrack/blob/v0.7.7/lib/AppInfo/Application.php#L5-L6
2023-12-15 12:24:10 +01:00
Maximilian Bosch
b06aad8b13
nextcloudPackages.apps: update 2023-12-15 12:23:31 +01:00
Maximilian Bosch
e6751379bc
nextcloud28Packages.bookmarks: 13.1.1 -> 13.1.2
Fixes

    Could not resolve symfonyAdapter! Class "symfonyAdapter" does not exist

when accessing the app.
2023-12-14 18:13:51 +01:00
Robert Schütz
f6ea3f91b5 nextcloud28: init at 28.0.0 2023-12-13 15:57:33 -08:00
Robert Schütz
ee2865e5ed nextcloudPackages: update 2023-12-12 16:06:41 -08:00
Emily Trau
ec05aa0a80
Merge pull request #269527 from SuperSandro2000/nextcloud
nextcloud27: 27.1.3 -> 27.1.4;  nextcloud26: 26.0.8 -> 26.0.9
2023-11-29 17:10:22 +11:00
Sandro Jäckel
b0f478b861
nextcloud27Packages: regen 2023-11-24 01:22:21 +01:00
Sandro Jäckel
8da1d68e33
nextcloud26Packages: regen 2023-11-24 01:22:09 +01:00
Felix Buehler
7f9abdcfcb nixos/nextcloud: fix docu of packages 2023-11-17 23:16:23 +01:00
Mynacol
9e635a13ab nextcloudPackages: Add cookbook, music and update
I added "cookbook" and "music" to `nextcloud-apps.json` and ran
`./generate.sh`. This also updated the already existing app's metadata.
2023-11-17 20:47:43 +01:00
Sandro Jäckel
91239bc459
nextcloud27Packages: regen 2023-10-28 16:47:52 +02:00
Sandro Jäckel
ecc02253d3
nextcloud26Packages: regen 2023-10-28 16:47:42 +02:00
Maximilian Bosch
bbc7d49666
nextcloud*Packages: update 2023-10-07 16:18:27 +02:00
Maximilian Bosch
efc5c80e18
nextcloud25: remove
EOL of Nextcloud v25 is scheduled by the end of this month.
2023-10-07 16:16:42 +02:00
Robert Schütz
db9532dc44 nextcloudPackages: update 2023-09-24 09:42:53 -07:00
Maximilian Bosch
c7589fc67c
nextcloud*Packages: update 2023-08-20 13:41:51 +02:00
Maximilian Bosch
c317dcec0d
nextcloud*Packages: expose proper license information
This change makes sure that each Nextcloud plugin installed provides a
`meta` section with proper license information.

Unfortunately, the metadata from the appstore is useless for this
purpose since it doesn't differentiate between e.g. AGPL 3.x and AGPL
3.x or any later version. In fact, this isn't consistent between their
software, e.g. `bookmarks` has `agpl3Plus` according to the files'
headers[1] whereas `twofactor_nextcloud_notification` is AGPL 3 only[2].

I don't think there's any trivial and reasonable way to retrieve this
information programatically, so I decided to change the format of
`nextcloud-apps.json`[3] to also contain the license in the form of the
license attribute we have in `lib/licenses.nix`, i.e. GNU AGPL 3 or
later is `agpl3Plus`.

I retrieved the information using the following approach:

* go to the source code of $app at the revision we currently have
  packaged
* check for a license identifier (does it specify the license only or
  the license "or any later version")?
  * first in `src/main.js` because most apps from Nextcloud itself used
    actual spdx identifiers in the frontend's source-code.
  * then in `lib/AppInfo/Application.php` which each Nextcloud app has.

License changes should be updated accordingly when updating the apps. As
with any other package in nixpkgs as well, this currently needs to be
done manually (or as part of the review process)[4].

Also, I decided to change the `name` of the `applyPatches` derivation
from `source-patched` to `nextcloud-app-${appName}-${appVersion}`. When
deploying a lot of apps (and probably displaying the diff using
`nix store diff-closures` on deploy), the current output isn't very
helpful. This is purely optional because I didn't want to break the
interface of `fetchNextcloudApp` again.

[1] https://github.com/nextcloud/bookmarks/blob/v13.1.0/lib/AppInfo/Application.php#L6
[2] https://github.com/nextcloud/twofactor_nextcloud_notification/blob/v3.7.0/lib/AppInfo/Application.php
[3] This isn't really well-defined since it's preprocessed with `jq(1)`
    before passing the apps to nc4nix.
[4] Though notable license changes (e.g. agpl -> gpl) would also pop up
    in the diff of <nextcloudversion>.json, so this is pretty easy to
    catch.
2023-08-20 13:39:44 +02:00
Raito Bezarius
c74490e000
nextcloud*Packages: add description, homepage, licenses from JSON
This ensures this data is replicated in the meta attribute.
2023-08-20 11:49:15 +02:00
Maximilian Bosch
519c64b1be
nextcloudPackages*: pin maps to stable 1.1.0
No idea what this gibberish disguised as tag is, but nc4nix doesn't seem
to cope well with it. For now, let's pin `maps` to the stable 1.1 release (as
it's the case for nextcloud27 already) since 1.1 is supported for all of
v25 to v27[1], so this seems reasonable to do.

[1] https://github.com/nextcloud/maps/blob/v1.1.0/appinfo/info.xml#L36
2023-08-14 23:43:20 +02:00
Maximilian Bosch
ff8121a615
nextcloudPackages*: update 2023-08-14 15:30:59 +02:00
Maximilian Bosch
06bfbdbc6b
nextcloud*Packages: update 2023-07-21 19:31:25 +02:00
Robert Schütz
9167341e3f nextcloudPackages: update 2023-07-20 12:24:10 -07:00
Matthieu Coudron
c39f24e4df nextcloudApps: update package sets 2023-07-18 00:09:58 +02:00
Matthieu Coudron
e44e079e80 nextcloud-apps.json: adds memories
an app that improves handling of photos in nextcloud with albums for instance
2023-07-18 00:09:58 +02:00
Maximilian Bosch
3c7af053f2
nextcloudPackages: add cospend, user_saml & maps 2023-06-16 16:42:09 +02:00
Maximilian Bosch
c92902f5b1
nextcloudPackages: update 27.json 2023-06-16 16:33:03 +02:00
Maximilian Bosch
5a2769d981
nextcloud27: init
Fixes #237560
2023-06-16 14:11:38 +02:00
Robert Schütz
1cb9ad9036 nextcloudPackages.apps.qownnotesapi: init at 23.6.0 2023-06-15 14:05:39 -07:00
Robert Schütz
fcf1a7e037 nextcloudPackages: update 2023-06-15 13:16:14 -07:00
Robert Schütz
2e30678017 nextcloudPackages: update 2023-06-13 14:45:16 -07:00
Robert Schütz
cac01149e7 nextcloudPackages: update 2023-05-18 01:29:50 -07:00
Robert Schütz
6301ccc20e nextcloudPackages: update 2023-04-23 12:31:14 -07:00
Maximilian Bosch
430f1dcdbd
nextcloud: remove nextcloud24, 25.0.5 -> 25.0.6, 26.0.0 -> 26.0.1 2023-04-20 11:34:54 +02:00
Robert Schütz
1370c12881 nextcloudPackages: update 2023-04-18 13:29:56 -07:00
Robert Schütz
5efbe9703d nextcloudPackages: update 2023-04-10 07:15:35 -07:00
Robert Schütz
9c3a588fa0 nextcloudPackages.apps.previewgenerator: init at 5.2.1 2023-03-29 13:23:42 -07:00
Robert Schütz
8373cbec30 nextcloudPackages: update 2023-03-28 18:43:27 -07:00
Maximilian Bosch
6a0b0a5de9 nextcloud: remove compat references to v23
This is not needed anymore because the version is EOL for almost a year
now and we don't even have the packages anymore, only the attributes for
compatibility for upgrades from older NixOS versions.
2023-03-22 22:37:17 +01:00
Raito Bezarius
2f9c4a7e74 nextcloud24Packages: update at various 2023-03-21 16:49:27 +01:00