5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
43 lines
1.6 KiB
Nix
43 lines
1.6 KiB
Nix
{ stdenvNoCC, lib, fetchurl }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "upsun";
|
|
version = "5.0.12";
|
|
|
|
src = {
|
|
x86_64-darwin = (fetchurl {
|
|
url = "https://github.com/platformsh/cli/releases/download/${version}/upsun_${version}_darwin_all.tar.gz";
|
|
hash = "sha256-RwTMJwvkuX/okHSyxzpvaD6uD8fheVbr7bgBC2eMQOo=";
|
|
});
|
|
aarch64-darwin = (fetchurl {
|
|
url = "https://github.com/platformsh/cli/releases/download/${version}/upsun_${version}_darwin_all.tar.gz";
|
|
hash = "sha256-RwTMJwvkuX/okHSyxzpvaD6uD8fheVbr7bgBC2eMQOo=";
|
|
});
|
|
x86_64-linux = (fetchurl {
|
|
url = "https://github.com/platformsh/cli/releases/download/${version}/upsun_${version}_linux_amd64.tar.gz";
|
|
hash = "sha256-svEPMVY7r7pAoXwFIMYqCEduqR3Nkocaguf2nIGt+G8=";
|
|
});
|
|
aarch64-linux = (fetchurl {
|
|
url = "https://github.com/platformsh/cli/releases/download/${version}/upsun_${version}_linux_arm64.tar.gz";
|
|
hash = "sha256-ZraS/PqSPL/kcj5o6hzDdL70IV2IWXOma6OHCiXIDQc=";
|
|
});
|
|
}.${stdenvNoCC.system} or (throw "${pname}-${version}: ${stdenvNoCC.system} is unsupported.");
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
sourceRoot = ".";
|
|
installPhase = ''
|
|
install -Dm755 upsun $out/bin/upsun
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/platformsh/cli";
|
|
description = "The unified tool for managing your Upsun services from the command line";
|
|
mainProgram = "upsun";
|
|
maintainers = with lib.maintainers; [ spk ];
|
|
license = lib.licenses.mit;
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
};
|
|
}
|