mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
25 lines
646 B
Nix
25 lines
646 B
Nix
{ stdenv, fetchurl, fetchpatch }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name= "nextcloud-${version}";
|
|
version = "13.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
|
|
sha256 = "048x3x6d11m75ghxjcjzm8amjm6ljirv6djbl53awwp9f5532hsp";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/
|
|
cp -R . $out/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Sharing solution for files, calendars, contacts and more";
|
|
homepage = https://nextcloud.com;
|
|
maintainers = with stdenv.lib.maintainers; [ schneefux bachp ];
|
|
license = stdenv.lib.licenses.agpl3Plus;
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
};
|
|
}
|