aboutsummaryrefslogtreecommitdiff
path: root/pkgs/webapps/nextcloud/apps/circles.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-10-24 10:41:43 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-10-24 10:41:43 +0200
commit051f375ca96f448820f0da33a24a8ee4bb937ad2 (patch)
tree0abfe344c652a4a29a3d7008e5c7edc11a3ce7f5 /pkgs/webapps/nextcloud/apps/circles.nix
parent9970dfe647ff13341d32899bd5d283f119651a48 (diff)
downloadNix-051f375ca96f448820f0da33a24a8ee4bb937ad2.tar.gz
Nix-051f375ca96f448820f0da33a24a8ee4bb937ad2.tar.zst
Nix-051f375ca96f448820f0da33a24a8ee4bb937ad2.zip
Add circles and social nextcloud apps
Diffstat (limited to 'pkgs/webapps/nextcloud/apps/circles.nix')
-rw-r--r--pkgs/webapps/nextcloud/apps/circles.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/webapps/nextcloud/apps/circles.nix b/pkgs/webapps/nextcloud/apps/circles.nix
new file mode 100644
index 0000000..64a4f2f
--- /dev/null
+++ b/pkgs/webapps/nextcloud/apps/circles.nix
@@ -0,0 +1,8 @@
1{ buildApp, nextcloudVersion }:
2assert nextcloudVersion >= 18 && nextcloudVersion <= 18;
3buildApp rec {
4 appName = "circles";
5 version = "0.18.9";
6 url = "https://github.com/nextcloud/circles/releases/download/v${version}/${appName}-${version}.tar.gz";
7 sha256 = "1a58zrjg4cc0igq14s5zfc5zva83mahmfr0mxvhvnasw7rwkpyzr";
8}