diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2021-02-08 22:27:00 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2021-02-11 21:39:12 +0100 |
commit | abd7458cbc97f9074f851f07f1f9145344b981ff (patch) | |
tree | 52c5c377857f105d82d395e15e0086707b087215 /pkgs/webapps/nextcloud/apps | |
parent | 1ddb9a44244de690ff604708ccbd3ec996cf2f02 (diff) | |
download | Nix-abd7458cbc97f9074f851f07f1f9145344b981ff.tar.gz Nix-abd7458cbc97f9074f851f07f1f9145344b981ff.tar.zst Nix-abd7458cbc97f9074f851f07f1f9145344b981ff.zip |
Add bakeer’s website
Diffstat (limited to 'pkgs/webapps/nextcloud/apps')
-rw-r--r-- | pkgs/webapps/nextcloud/apps/impersonate.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/webapps/nextcloud/apps/impersonate.nix b/pkgs/webapps/nextcloud/apps/impersonate.nix new file mode 100644 index 0000000..66cc893 --- /dev/null +++ b/pkgs/webapps/nextcloud/apps/impersonate.nix | |||
@@ -0,0 +1,9 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 18 && nextcloudVersion < 19; | ||
3 | buildApp rec { | ||
4 | appName = "impersonate"; | ||
5 | version = "1.5.2"; | ||
6 | url = "https://github.com/nextcloud/impersonate/releases/download/v${version}/${appName}.tar.gz"; | ||
7 | sha256 = "03fm9d2p6ap9gyiw5anmlwsdmiyklrkpdgchfx2zfgxn38pjrz6d"; | ||
8 | } | ||
9 | |||