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
1 changed files with 4 additions and 4 deletions

View File

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