2022-03-28 22:53:32 +01:00
|
|
|
{ lib, stdenv, fetchurl, fetchzip, autoPatchelfHook, installShellFiles, cpio, xar }:
|
2018-05-08 08:23:07 +01: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";
|
2022-08-10 12:32:02 +01:00
|
|
|
version = "2.6.1";
|
2022-03-22 19:58:32 +00:00
|
|
|
sources = rec {
|
2022-07-23 07:56:45 +01:00
|
|
|
aarch64-linux = fetch "linux_arm64" "sha256-2V3/F7/HEOvk2T1dv4rnS0xu6Z5EqGSV/9erED7ZS1w=" "zip";
|
|
|
|
i686-linux = fetch "linux_386" "sha256-z4pKZY5DQ2oDHHuet1S/p7GM+rXS8/8xmTrN+rqCUBo=" "zip";
|
2022-08-10 12:32:02 +01:00
|
|
|
x86_64-linux = fetch "linux_amd64" "sha256-X+VyoXg7HRq70b9qRhk2N/UvBlhIkvCWM6kadaGDhsU=" "zip";
|
2022-07-23 07:56:45 +01:00
|
|
|
aarch64-darwin = fetch "apple_universal" "sha256-YPidRXNzNNuDoM2Gd5dEsCDxwosBJFKSzjoP0SPkQZs=" "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 22:53:03 +01: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 08:23:07 +01:00
|
|
|
|
2022-03-28 22:53:32 +01: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 14:11:21 +01:00
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
unpackPhase = lib.optionalString stdenv.isDarwin ''
|
2020-04-12 14:11:21 +01:00
|
|
|
xar -xf $src
|
2021-05-12 02:08:42 +01:00
|
|
|
zcat op.pkg/Payload | cpio -i
|
2020-04-12 14:11:21 +01:00
|
|
|
'';
|
|
|
|
|
2018-05-08 08:23:07 +01:00
|
|
|
installPhase = ''
|
2022-03-30 00:31:17 +01:00
|
|
|
runHook preInstall
|
2022-03-22 19:58:32 +00:00
|
|
|
install -D ${mainProgram} $out/bin/${mainProgram}
|
2022-03-28 22:53:32 +01:00
|
|
|
runHook postInstall
|
2018-05-20 22:53:03 +01:00
|
|
|
'';
|
2020-04-12 14:11:21 +01:00
|
|
|
|
2022-03-30 00:31:17 +01:00
|
|
|
postInstall = ''
|
2022-06-25 06:04:45 +01:00
|
|
|
HOME=$TMPDIR
|
2022-03-30 00:31:17 +01: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 14:46:14 +01:00
|
|
|
|
2022-03-28 22:53:32 +01:00
|
|
|
dontStrip = stdenv.isDarwin;
|
2018-05-08 08:23:07 +01:00
|
|
|
|
2020-05-25 14:46:14 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
|
|
|
|
installCheckPhase = ''
|
2022-03-22 19:58:32 +00:00
|
|
|
$out/bin/${mainProgram} --version
|
2020-05-25 14:46:14 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-10-14 17:23:03 +01: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 17:23:03 +01:00
|
|
|
maintainers = with maintainers; [ joelburget marsam ];
|
2022-06-04 23:19:25 +01:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2021-10-14 17:23:03 +01:00
|
|
|
license = licenses.unfree;
|
2022-03-22 19:58:32 +00:00
|
|
|
inherit mainProgram platforms;
|
2018-05-08 08:23:07 +01:00
|
|
|
};
|
|
|
|
}
|