2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, nixosTests }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
2020-12-25 13:55:36 +00:00
|
|
|
generic = {
|
|
|
|
version, sha256,
|
|
|
|
eol ? false, extraVulnerabilities ? []
|
|
|
|
}: stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "nextcloud";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.nextcloud.com/server/releases/${pname}-${version}.tar.bz2";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
2022-09-11 15:47:08 +00:00
|
|
|
patches = [ ./0001-Setup-remove-custom-dbuser-creation-behavior.patch ];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
passthru.tests = nixosTests.nextcloud;
|
|
|
|
|
|
|
|
installPhase = ''
|
2021-05-28 09:39:13 +00:00
|
|
|
runHook preInstall
|
2020-04-24 23:36:52 +00:00
|
|
|
mkdir -p $out/
|
|
|
|
cp -R . $out/
|
2021-05-28 09:39:13 +00:00
|
|
|
runHook postInstall
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Sharing solution for files, calendars, contacts and more";
|
|
|
|
homepage = "https://nextcloud.com";
|
2022-08-12 12:06:08 +00:00
|
|
|
maintainers = with maintainers; [ schneefux bachp globin ma27 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.agpl3Plus;
|
|
|
|
platforms = with platforms; unix;
|
2020-12-25 13:55:36 +00:00
|
|
|
knownVulnerabilities = extraVulnerabilities
|
|
|
|
++ (optional eol "Nextcloud version ${version} is EOL");
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
in {
|
2022-06-16 17:23:12 +00:00
|
|
|
nextcloud22 = throw ''
|
|
|
|
Nextcloud v22 has been removed from `nixpkgs` as the support for is dropped
|
|
|
|
by upstream in 2022-07. Please upgrade to at least Nextcloud v23 by declaring
|
2020-10-07 09:15:18 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
services.nextcloud.package = pkgs.nextcloud23;
|
2020-10-07 09:15:18 +00:00
|
|
|
|
|
|
|
in your NixOS config.
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
WARNING: if you were on Nextcloud 21 on NixOS 21.11 you have to upgrade to Nextcloud 22
|
2022-03-30 09:31:56 +00:00
|
|
|
first on 21.11 because Nextcloud doesn't support upgrades accross multiple major versions!
|
2021-10-28 06:52:43 +00:00
|
|
|
'';
|
2021-03-09 03:18:52 +00:00
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
nextcloud23 = generic {
|
2022-10-06 18:32:54 +00:00
|
|
|
version = "23.0.10";
|
|
|
|
sha256 = "c68cff7f40b1e73e8d173f068e7d9c02d37e3f94a6a36a556a49c3ff5def4267";
|
2021-03-09 03:18:52 +00:00
|
|
|
};
|
2022-05-18 14:49:53 +00:00
|
|
|
|
|
|
|
nextcloud24 = generic {
|
2022-10-06 18:32:54 +00:00
|
|
|
version = "24.0.6";
|
|
|
|
sha256 = "b26dff9980a47e7e722805fdbbf87e07f59a3817b03ecc32698e028e9baf0301";
|
2022-05-18 14:49:53 +00:00
|
|
|
};
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
# tip: get the sha with:
|
2021-04-12 18:23:04 +00:00
|
|
|
# curl 'https://download.nextcloud.com/server/releases/nextcloud-${version}.tar.bz2.sha256'
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|