nextcloud*Packages: add description, homepage, licenses from JSON

This ensures this data is replicated in the meta attribute.
This commit is contained in:
Raito Bezarius 2023-06-18 14:54:20 +02:00 committed by Maximilian Bosch
parent b4b1ce2443
commit c74490e000
No known key found for this signature in database
GPG key ID: 9A6EEA275CA5BE0A

View file

@ -15,7 +15,7 @@ let packages = self:
# This takes the data generated from the go tool.
mkNextcloudDerivation = self.callPackage ({ }: { data }:
pkgs.fetchNextcloudApp {
inherit (data) url sha256;
inherit (data) url sha256 description homepage licenses;
}) {};
} // lib.mapAttrs (type: pkgs: lib.makeExtensible (_: lib.mapAttrs (pname: data: self.mkNextcloudDerivation { inherit data; }) pkgs)) generatedJson;