nextcloud: Fetch apps using nvfetcher
This commit is contained in:
parent
c4fa991b62
commit
61d3008bc3
9 changed files with 318 additions and 66 deletions
pkgs
|
@ -1,5 +1,18 @@
|
|||
{pkgs, ...}: let
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
}: let
|
||||
inherit (builtins) listToAttrs mapAttrs;
|
||||
inherit (pkgs) callPackage;
|
||||
in {
|
||||
starbound = callPackage ./starbound {};
|
||||
}
|
||||
in
|
||||
{
|
||||
starbound = callPackage ./starbound {};
|
||||
}
|
||||
// (
|
||||
# Add nextcloud apps
|
||||
let
|
||||
mkNextcloudApp = pkgs.callPackage ./mkNextcloudApp.nix {};
|
||||
sources = pkgs.callPackage ./_sources_nextcloud/generated.nix {};
|
||||
in
|
||||
mapAttrs (_: source: mkNextcloudApp source) sources
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue