blob: 378226a1cbd4ff005bc0e2aaa541824fea33cde6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{
stdenvNoCC,
lib,
fetchurl,
testers,
installShellFiles,
upsun
}:
let versions = lib.importJSON ./versions.json;
arch = if stdenvNoCC.isx86_64 then "amd64"
else if stdenvNoCC.isAarch64 then "arm64"
else throw "Unsupported architecture";
os = if stdenvNoCC.isLinux then "linux"
else if stdenvNoCC.isDarwin then "darwin"
else throw "Unsupported os";
versionInfo = versions."${os}-${arch}";
inherit (versionInfo) hash url;
in
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "upsun";
inherit (versions) version;
nativeBuildInputs = [ installShellFiles ];
# run ./update
src = fetchurl { inherit hash url; };
dontConfigure = true;
dontBuild = true;
sourceRoot = ".";
installPhase = ''
runHook preInstall
install -Dm755 upsun $out/bin/upsun
installShellCompletion completion/bash/upsun.bash \
completion/zsh/_upsun
runHook postInstall
'';
passthru = {
updateScript = ./update.sh;
tests.version = testers.testVersion {
inherit (finalAttrs) version;
package = upsun;
};
};
meta = {
description = "Unified tool for managing your Upsun services from the command line";
homepage = "https://github.com/platformsh/cli";
license = lib.licenses.mit;
mainProgram = "upsun";
maintainers = with lib.maintainers; [ spk ];
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
})
|