1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/servers/nextcloud/default.nix

25 lines
658 B
Nix
Raw Normal View History

2016-09-21 16:55:38 +01:00
{ stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
name= "nextcloud-${version}";
2018-02-20 22:23:04 +00:00
version = "13.0.0";
2016-09-21 16:55:38 +01:00
src = fetchurl {
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
2018-02-20 22:23:04 +00:00
sha256 = "38e6064432a2d1a044f219028d3fd46cb7a943a47e11eef346810bd289705aec";
2016-09-21 16:55:38 +01:00
};
installPhase = ''
mkdir -p $out/
cp -R . $out/
2016-09-21 16:55:38 +01:00
'';
meta = {
description = "Sharing solution for files, calendars, contacts and more";
homepage = https://nextcloud.com;
2017-09-29 21:32:33 +01:00
maintainers = with stdenv.lib.maintainers; [ schneefux bachp ];
2016-09-21 16:55:38 +01:00
license = stdenv.lib.licenses.agpl3Plus;
platforms = with stdenv.lib.platforms; unix;
};
}