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

52 lines
1.7 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";
2020-12-28 21:40:51 +00:00
version = "1.8.0";
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";
}.${stdenv.hostPlatform.system};
sha256 = {
2020-12-28 21:40:51 +00:00
"i686-linux" = "teoxscan+EZ76Q0sfKT6nt1w/LSsmDoiN2oh+NGO/4A=";
"x86_64-linux" = "nRK2GSwhQe5OgcAdR1fg0vUp3fzEkhwU/teIwsEEemw=";
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";
2020-12-28 21:40:51 +00:00
sha256 = "0pycia75vdfh6gxfd2hr32cxrryfxydid804n0v76l2fpr9v9v3d";
2020-06-28 18:50:49 +00:00
};
2020-04-12 13:11:21 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ xar cpio ];
unpackPhase = stdenv.lib.optionalString stdenv.isDarwin ''
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;
2020-04-12 13:11:21 +00:00
nativeBuildInputs = stdenv.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" ];
};
}