mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
58 lines
1.5 KiB
Nix
58 lines
1.5 KiB
Nix
{ lib, stdenvNoCC, fetchurl, nixosTests
|
|
, nextcloud28Packages
|
|
, nextcloud29Packages
|
|
}:
|
|
|
|
let
|
|
generic = {
|
|
version, hash
|
|
, eol ? false, extraVulnerabilities ? []
|
|
, packages
|
|
}: stdenvNoCC.mkDerivation rec {
|
|
pname = "nextcloud";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://download.nextcloud.com/server/releases/${pname}-${version}.tar.bz2";
|
|
inherit hash;
|
|
};
|
|
|
|
passthru = {
|
|
tests = nixosTests.nextcloud;
|
|
inherit packages;
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/
|
|
cp -R . $out/
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
changelog = "https://nextcloud.com/changelog/#${lib.replaceStrings [ "." ] [ "-" ] version}";
|
|
description = "Sharing solution for files, calendars, contacts and more";
|
|
homepage = "https://nextcloud.com";
|
|
maintainers = with maintainers; [ schneefux bachp globin ma27 ];
|
|
license = licenses.agpl3Plus;
|
|
platforms = platforms.linux;
|
|
knownVulnerabilities = extraVulnerabilities
|
|
++ (optional eol "Nextcloud version ${version} is EOL");
|
|
};
|
|
};
|
|
in {
|
|
nextcloud28 = generic {
|
|
version = "28.0.9";
|
|
hash = "sha256-DZd3NkDn+A6gqTP7+L0pe/JB2ghy+hzFQ1D/F5Nmmxs=";
|
|
packages = nextcloud28Packages;
|
|
};
|
|
|
|
nextcloud29 = generic {
|
|
version = "29.0.5";
|
|
hash = "sha256-x/6cYeXsMKXlmejxUqGCXfaE0w6JnbDKqIaMjWe1Oiw=";
|
|
packages = nextcloud29Packages;
|
|
};
|
|
|
|
# tip: get the sha with:
|
|
# curl 'https://download.nextcloud.com/server/releases/nextcloud-${version}.tar.bz2.sha256'
|
|
}
|