mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
27 lines
739 B
Nix
27 lines
739 B
Nix
inputs: _final: prev: {
|
|
|
|
nextcloudApps = {
|
|
news = prev.fetchNextcloudApp {
|
|
url = inputs.nextcloud-news.outPath;
|
|
sha256 = inputs.nextcloud-news.narHash;
|
|
license = "agpl3Plus";
|
|
};
|
|
external = prev.fetchNextcloudApp {
|
|
url = inputs.nextcloud-external.outPath;
|
|
sha256 = inputs.nextcloud-external.narHash;
|
|
license = "agpl3Plus";
|
|
};
|
|
cookbook = prev.fetchNextcloudApp {
|
|
url = inputs.nextcloud-cookbook.outPath;
|
|
sha256 = inputs.nextcloud-cookbook.narHash;
|
|
license = "agpl3Plus";
|
|
};
|
|
snappymail = prev.fetchNextcloudApp {
|
|
url = inputs.nextcloud-snappymail.outPath;
|
|
sha256 = inputs.nextcloud-snappymail.narHash;
|
|
license = "agpl3Plus";
|
|
};
|
|
};
|
|
|
|
}
|