nextcloud: 13.0.6 -> 14.0.1

Co-authored-by: Robin Gloster <mail@glob.in>
This commit is contained in:
Ruben Maher 2018-09-09 09:21:05 +09:30
parent ebd38185c8
commit e5b3ea56e1

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name= "nextcloud-${version}";
version = "13.0.6";
name = "nextcloud-${version}";
version = "14.0.1";
src = fetchurl {
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
sha256 = "1m38k5jafz2lniy6fmq17xffkgaqs6rl4w789sqpniva1fb9xz4h";
sha256 = "14ymc6fr91735yyc2gqh7c89mbbwsgamhhysf6crp9kp27l83z5a";
};
installPhase = ''
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Sharing solution for files, calendars, contacts and more";
homepage = https://nextcloud.com;
maintainers = with stdenv.lib.maintainers; [ schneefux bachp ];
maintainers = with stdenv.lib.maintainers; [ schneefux bachp globin fpletz ];
license = stdenv.lib.licenses.agpl3Plus;
platforms = with stdenv.lib.platforms; unix;
};