6b48deee54
Both packages will get EOLed within the lifetime of 20.09. `nextcloud17` can be removed entirely (the attribute-path is kept however to provide meaningful errors), however `nextcloud18` must be kept as `insecure` to make sure that users from `nextcloud17` can properly upgrade to `nextcloud19` on NixOS 20.09.
52 lines
1.5 KiB
Nix
52 lines
1.5 KiB
Nix
{ stdenv, fetchurl, nixosTests }:
|
|
|
|
let
|
|
generic = { version, sha256, insecure ? false }: stdenv.mkDerivation rec {
|
|
pname = "nextcloud";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://download.nextcloud.com/server/releases/${pname}-${version}.tar.bz2";
|
|
inherit sha256;
|
|
};
|
|
|
|
passthru.tests = nixosTests.nextcloud;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/
|
|
cp -R . $out/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Sharing solution for files, calendars, contacts and more";
|
|
homepage = "https://nextcloud.com";
|
|
maintainers = with maintainers; [ schneefux bachp globin fpletz ma27 ];
|
|
license = licenses.agpl3Plus;
|
|
platforms = with platforms; unix;
|
|
knownVulnerabilities = optional insecure "Nextcloud version ${version} is EOL";
|
|
};
|
|
};
|
|
in {
|
|
nextcloud17 = throw ''
|
|
Nextcloud v17 has been removed from `nixpkgs` as the support for it will be dropped
|
|
by upstream within the lifetime of NixOS 20.09[1]. Please upgrade to Nextcloud v18 by
|
|
declaring
|
|
|
|
services.nextcloud.package = pkgs.nextcloud18;
|
|
|
|
in your NixOS config.
|
|
|
|
[1] https://docs.nextcloud.com/server/18/admin_manual/release_schedule.html
|
|
'';
|
|
|
|
nextcloud18 = generic {
|
|
version = "18.0.9";
|
|
sha256 = "0rigg5pv2vnxgmjznlvxfc41s00raxa8jhib5vsznhj55qn99jm1";
|
|
insecure = true;
|
|
};
|
|
|
|
nextcloud19 = generic {
|
|
version = "19.0.3";
|
|
sha256 = "0sc9cnsdh8kj60h7i3knh40ngdz1w1wmdqw2v2axfkmax22kjl7w";
|
|
};
|
|
}
|