bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
56 lines
1.6 KiB
Nix
56 lines
1.6 KiB
Nix
{
|
|
fetchurl,
|
|
lib,
|
|
stdenv,
|
|
autoPatchelfHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ocis-bin";
|
|
version = "5.0.5";
|
|
system =
|
|
if stdenv.isLinux && stdenv.isx86_64 then
|
|
"linux-amd64"
|
|
else if stdenv.isLinux && stdenv.isAarch64 then
|
|
"linux-arm64"
|
|
else
|
|
"";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/owncloud/ocis/releases/download/v${finalAttrs.version}/ocis-${finalAttrs.version}-${finalAttrs.system}";
|
|
|
|
hash =
|
|
if stdenv.isLinux && stdenv.isAarch64 then
|
|
"sha256-OdtT9NOhh0Fkk+8CDic0NWWbGflk3FcuKB60OycJU5E="
|
|
else if stdenv.isLinux && stdenv.isx86_64 then
|
|
"sha256-YAIhtHv/cO4yFpkWoRNMf6t4+ifMtGPTcYu84ZMvfD4="
|
|
else
|
|
builtins.throw "Unsupported platform, please contact Nixpkgs maintainers for ocis package";
|
|
};
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D $src $out/bin/ocis
|
|
runHook postInstall
|
|
'';
|
|
|
|
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
|
|
];
|
|
sourceProvenance = [ sourceTypes.binaryNativeCode ];
|
|
mainProgram = "ocis";
|
|
};
|
|
})
|