2022-03-28 21:53:32 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchzip, autoPatchelfHook, installShellFiles, cpio, xar }:
|
2018-05-08 07:23:07 +00:00
|
|
|
|
2022-03-22 19:58:32 +00:00
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
fetch = srcPlatform: sha256: extension:
|
|
|
|
let
|
|
|
|
args = {
|
|
|
|
url = "https://cache.agilebits.com/dist/1P/op2/pkg/v${version}/op_${srcPlatform}_v${version}.${extension}";
|
|
|
|
inherit sha256;
|
|
|
|
} // lib.optionalAttrs (extension == "zip") { stripRoot = false; };
|
|
|
|
in
|
|
|
|
if extension == "zip" then fetchzip args else fetchurl args;
|
|
|
|
|
2022-02-12 04:20:00 +00:00
|
|
|
pname = "1password-cli";
|
2023-07-06 21:20:00 +00:00
|
|
|
version = "2.19.0";
|
2022-03-22 19:58:32 +00:00
|
|
|
sources = rec {
|
2023-07-21 18:36:12 +00:00
|
|
|
aarch64-linux = fetch "linux_arm64" "sha256-/sP5Z52fWkRcv+Wj45HTV1Ckve+jA92m91kGGJwdC6s=" "zip";
|
2023-07-06 21:20:00 +00:00
|
|
|
i686-linux = fetch "linux_386" "sha256-UGPWk0I/nCaqWWz/rwG/TSDie0/tarKroGi+7Ge7kE4=" "zip";
|
|
|
|
x86_64-linux = fetch "linux_amd64" "sha256-rSZM0GuroSqVokhkjPtk3+2+C9w5/Tkh2cvB+kShyHY=" "zip";
|
|
|
|
aarch64-darwin = fetch "apple_universal" "sha256-3zVD8LUdxhzroLlnQCiCVELEQMPmCriRff85ZlfgSKI=" "pkg";
|
2022-03-22 19:58:32 +00:00
|
|
|
x86_64-darwin = aarch64-darwin;
|
|
|
|
};
|
|
|
|
platforms = builtins.attrNames sources;
|
|
|
|
mainProgram = "op";
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit pname version;
|
2018-05-20 21:53:03 +00:00
|
|
|
src =
|
2022-03-22 19:58:32 +00:00
|
|
|
if (builtins.elem system platforms) then
|
|
|
|
sources.${system}
|
|
|
|
else
|
|
|
|
throw "Source for ${pname} is not available for ${system}";
|
2018-05-08 07:23:07 +00:00
|
|
|
|
2022-03-28 21:53:32 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ lib.optional stdenv.isLinux autoPatchelfHook;
|
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ xar cpio ];
|
2020-04-12 13:11:21 +00:00
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
unpackPhase = lib.optionalString stdenv.isDarwin ''
|
2020-04-12 13:11:21 +00:00
|
|
|
xar -xf $src
|
2021-05-12 01:08:42 +00:00
|
|
|
zcat op.pkg/Payload | cpio -i
|
2020-04-12 13:11:21 +00:00
|
|
|
'';
|
|
|
|
|
2018-05-08 07:23:07 +00:00
|
|
|
installPhase = ''
|
2022-03-29 23:31:17 +00:00
|
|
|
runHook preInstall
|
2022-03-22 19:58:32 +00:00
|
|
|
install -D ${mainProgram} $out/bin/${mainProgram}
|
2022-03-28 21:53:32 +00:00
|
|
|
runHook postInstall
|
2018-05-20 21:53:03 +00:00
|
|
|
'';
|
2020-04-12 13:11:21 +00:00
|
|
|
|
2022-03-29 23:31:17 +00:00
|
|
|
postInstall = ''
|
2022-06-25 05:04:45 +00:00
|
|
|
HOME=$TMPDIR
|
2022-03-29 23:31:17 +00:00
|
|
|
installShellCompletion --cmd ${mainProgram} \
|
|
|
|
--bash <($out/bin/${mainProgram} completion bash) \
|
|
|
|
--fish <($out/bin/${mainProgram} completion fish) \
|
|
|
|
--zsh <($out/bin/${mainProgram} completion zsh)
|
|
|
|
'';
|
2020-05-25 13:46:14 +00:00
|
|
|
|
2022-03-28 21:53:32 +00:00
|
|
|
dontStrip = stdenv.isDarwin;
|
2018-05-08 07:23:07 +00:00
|
|
|
|
2020-05-25 13:46:14 +00:00
|
|
|
doInstallCheck = true;
|
|
|
|
|
|
|
|
installCheckPhase = ''
|
2022-03-22 19:58:32 +00:00
|
|
|
$out/bin/${mainProgram} --version
|
2020-05-25 13:46:14 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-10-14 16:23:03 +00:00
|
|
|
description = "1Password command-line tool";
|
2022-03-22 19:36:05 +00:00
|
|
|
homepage = "https://developer.1password.com/docs/cli/";
|
|
|
|
downloadPage = "https://app-updates.agilebits.com/product_history/CLI2";
|
2021-10-14 16:23:03 +00:00
|
|
|
maintainers = with maintainers; [ joelburget marsam ];
|
2022-06-04 22:19:25 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2021-10-14 16:23:03 +00:00
|
|
|
license = licenses.unfree;
|
2022-03-22 19:58:32 +00:00
|
|
|
inherit mainProgram platforms;
|
2018-05-08 07:23:07 +00:00
|
|
|
};
|
|
|
|
}
|