nixpkgs/pkgs/applications/misc/1password/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 lines
2.4 KiB
Nix
Raw Normal View History

2022-03-28 21:53:32 +00:00
{ lib, stdenv, fetchurl, fetchzip, autoPatchelfHook, installShellFiles, cpio, xar }:
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;
pname = "1password-cli";
version = "2.19.0";
sources = rec {
2023-07-21 18:36:12 +00:00
aarch64-linux = fetch "linux_arm64" "sha256-/sP5Z52fWkRcv+Wj45HTV1Ckve+jA92m91kGGJwdC6s=" "zip";
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";
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 =
if (builtins.elem system platforms) then
sources.${system}
else
throw "Source for ${pname} is not available for ${system}";
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
zcat op.pkg/Payload | cpio -i
2020-04-12 13:11:21 +00:00
'';
installPhase = ''
runHook preInstall
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
postInstall = ''
2022-06-25 05:04:45 +00:00
HOME=$TMPDIR
installShellCompletion --cmd ${mainProgram} \
--bash <($out/bin/${mainProgram} completion bash) \
--fish <($out/bin/${mainProgram} completion fish) \
--zsh <($out/bin/${mainProgram} completion zsh)
'';
2022-03-28 21:53:32 +00:00
dontStrip = stdenv.isDarwin;
doInstallCheck = true;
installCheckPhase = ''
$out/bin/${mainProgram} --version
'';
meta = with lib; {
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";
maintainers = with maintainers; [ joelburget marsam ];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
inherit mainProgram platforms;
};
}