1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00
nixpkgs/pkgs/applications/misc/1password/default.nix

57 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";
version = "1.12.2";
2018-05-20 22:53:03 +01:00
src =
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";
}.${stdenv.hostPlatform.system};
sha256 = {
"i686-linux" = "tCm/vDBASPN9FBSVRJ6BrFc7hdtZWPEAgvokJhjazPg=";
"x86_64-linux" = "3VkVMuTAfeEowkguJi2fd1kG7GwO1VN5GBPgNaH3Zv4=";
"aarch64-linux" = "vWoA/0ZfdwVniHmxC4nH1QIc6bjdb00+SwlkIWc9BPs=";
}.${stdenv.hostPlatform.system};
stripRoot = false;
} else
fetchurl {
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_apple_universal_v${version}.pkg";
sha256 = "xG/6YZdkJxr5Py90rkIyG4mK40yFTmNSfih9jO2uF+4=";
};
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
zcat op.pkg/Payload | cpio -i
2020-04-12 14:11:21 +01:00
'';
installPhase = ''
2018-05-20 22:53:03 +01:00
install -D op $out/bin/op
'';
2020-04-12 14:11:21 +01: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; {
description = "1Password command-line tool";
homepage = "https://support.1password.com/command-line/";
2020-04-12 14:11:21 +01:00
downloadPage = "https://app-updates.agilebits.com/product_history/CLI";
maintainers = with maintainers; [ joelburget marsam ];
license = licenses.unfree;
2021-11-22 20:11:35 +00:00
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
};
}