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

54 lines
1.9 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchzip, autoPatchelfHook, fetchurl, xar, cpio }:
stdenv.mkDerivation rec {
2019-01-03 04:46:25 +00:00
pname = "1password";
2021-05-05 19:31:29 +00:00
version = "1.9.1";
2018-05-20 21:53:03 +00:00
src =
2020-06-28 18:50:49 +00:00
if stdenv.isLinux then fetchzip {
url = {
"i686-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_386_v${version}.zip";
"x86_64-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_amd64_v${version}.zip";
"aarch64-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_arm_v${version}.zip";
2020-06-28 18:50:49 +00:00
}.${stdenv.hostPlatform.system};
sha256 = {
2021-05-05 19:31:29 +00:00
"i686-linux" = "1x5khnp6yqrjf513x3y6l38rb121nib7d4aiz4cz7fh029kxjhd1";
"x86_64-linux" = "1ar8lzkndl7xzcinv93rzg8q25vb23fggbjkhgchgc5x9wkwk8hw";
"aarch64-linux" = "1q81pk6qmp96p1dbhx1ijln8f54rac8r81d4ghqx9v756s9szrr1";
2020-06-28 18:50:49 +00:00
}.${stdenv.hostPlatform.system};
stripRoot = false;
} else fetchurl {
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_darwin_amd64_v${version}.pkg";
2021-05-05 19:31:29 +00:00
sha256 = "0904wwy3wdhfvbkvpdap8141a9gqmn0dw45ikrzsqpg7pv1r2zch";
2020-06-28 18:50:49 +00:00
};
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 Payload | cpio -i
'';
installPhase = ''
2018-05-20 21:53:03 +00:00
install -D op $out/bin/op
'';
2020-04-12 13:11:21 +00:00
dontStrip = stdenv.isDarwin;
2021-01-15 05:42:41 +00:00
nativeBuildInputs = lib.optionals stdenv.isLinux [ autoPatchelfHook ];
doInstallCheck = true;
installCheckPhase = ''
$out/bin/op --version
'';
meta = with lib; {
2018-08-01 13:19:07 +00:00
description = "1Password command-line tool";
2020-04-12 13:11:21 +00:00
homepage = "https://support.1password.com/command-line/";
downloadPage = "https://app-updates.agilebits.com/product_history/CLI";
2019-09-28 21:20:00 +00:00
maintainers = with maintainers; [ joelburget marsam ];
2018-08-01 13:19:07 +00:00
license = licenses.unfree;
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "aarch64-linux" ];
};
}