84 lines
2.3 KiB
Nix
84 lines
2.3 KiB
Nix
|
{
|
||
|
fetchurl,
|
||
|
lib,
|
||
|
stdenv,
|
||
|
autoPatchelfHook,
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
arch =
|
||
|
{
|
||
|
i686-linux = "386";
|
||
|
x86_64-linux = "amd64";
|
||
|
aarch64-linux = "arm64";
|
||
|
armv7l-linux = "arm";
|
||
|
x86_64-darwin = "amd64";
|
||
|
aarch64-darwin = "arm64";
|
||
|
}
|
||
|
."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
||
|
|
||
|
os =
|
||
|
if stdenv.isLinux then
|
||
|
"linux"
|
||
|
else if stdenv.isDarwin then
|
||
|
"darwin"
|
||
|
else
|
||
|
throw "Unsupported OS";
|
||
|
|
||
|
hash =
|
||
|
{
|
||
|
hash_386-linux = "sha256-4yEgg0Ve8tjNn2weH9d91tfRaU1TE569VvZLxzuzXsw=";
|
||
|
hash_amd64-linux = "sha256-YAIhtHv/cO4yFpkWoRNMf6t4+ifMtGPTcYu84ZMvfD4=";
|
||
|
hash_arm64-linux = "sha256-OdtT9NOhh0Fkk+8CDic0NWWbGflk3FcuKB60OycJU5E=";
|
||
|
hash_arm-linux = "sha256-foMsZ8Nq+Q5lqt2XZCDvQ+/sFM8/1/rPfogzsyrQHqs=";
|
||
|
hash_amd64-darwin = "sha256-6jaX9iqyqztykeXZX3YqwRV/silFiyfeB9gJyreAfF8=";
|
||
|
hash_arm64-darwin = "sha256-KJqMJct7YWocE4eVjMF36adqTIf7WcutZlG3QEoMhCI=";
|
||
|
}
|
||
|
."hash_${arch}-${os}";
|
||
|
in
|
||
|
stdenv.mkDerivation (finalAttrs: {
|
||
|
pname = "ocis-bin";
|
||
|
version = "5.0.5";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/owncloud/ocis/releases/download/v${finalAttrs.version}/ocis-${finalAttrs.version}-${os}-${arch}";
|
||
|
inherit hash;
|
||
|
};
|
||
|
|
||
|
dontUnpack = true;
|
||
|
|
||
|
nativeBuildInputs = [ autoPatchelfHook ];
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
install -D $src $out/bin/ocis
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
passthru.updateScript = ./update.py;
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "ownCloud Infinite Scale Stack";
|
||
|
homepage = "https://owncloud.dev/ocis/";
|
||
|
changelog = "https://github.com/owncloud/ocis/releases/tag/v${finalAttrs.version}";
|
||
|
# oCIS is licensed under non-free EULA which can be found here :
|
||
|
# https://github.com/owncloud/ocis/releases/download/v5.0.1/End-User-License-Agreement-for-ownCloud-Infinite-Scale.pdf
|
||
|
license = licenses.unfree;
|
||
|
maintainers = with maintainers; [
|
||
|
ramblurr
|
||
|
bhankas
|
||
|
danth
|
||
|
ramblurr
|
||
|
];
|
||
|
|
||
|
platforms =
|
||
|
(lib.intersectLists platforms.linux (
|
||
|
lib.platforms.arm ++ lib.platforms.aarch64 ++ lib.platforms.x86
|
||
|
))
|
||
|
++ (lib.intersectLists platforms.darwin (lib.platforms.aarch64 ++ lib.platforms.x86_64));
|
||
|
|
||
|
sourceProvenance = [ sourceTypes.binaryNativeCode ];
|
||
|
mainProgram = "ocis";
|
||
|
};
|
||
|
})
|