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

56 lines
1.8 KiB
Nix
Raw Normal View History

2020-04-12 15:11:21 +02:00
{ stdenv, fetchzip, autoPatchelfHook, fetchurl, xar, cpio }:
stdenv.mkDerivation rec {
2019-01-03 05:46:25 +01:00
pname = "1password";
2020-05-26 12:44:16 +02:00
version = "1.0.0";
2018-05-20 23:53:03 +02:00
src =
if stdenv.hostPlatform.system == "i686-linux" then
2018-05-20 23:53:03 +02:00
fetchzip {
2018-06-25 00:11:40 +02:00
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_386_v${version}.zip";
2020-05-26 12:44:16 +02:00
sha256 = "1d1lxmrmirh3837zib91dmxblb4imdz8gbq56pb7kgbff3zf96ql";
2018-05-20 23:53:03 +02:00
stripRoot = false;
}
else if stdenv.hostPlatform.system == "x86_64-linux" then
2018-05-20 23:53:03 +02:00
fetchzip {
2018-06-25 00:11:40 +02:00
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_amd64_v${version}.zip";
2020-05-26 12:44:16 +02:00
sha256 = "0pscm61dc69vmkrzrnxi531d37ig9y48w8q1lvzsg13zvvwaw8hs";
2018-05-20 23:53:03 +02:00
stripRoot = false;
}
else if stdenv.hostPlatform.system == "x86_64-darwin" then
2020-04-12 15:11:21 +02:00
fetchurl {
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_darwin_amd64_v${version}.pkg";
2020-05-26 12:44:16 +02:00
sha256 = "1sb5qdssasqm7z7j4xzgkmkgf132zhgm93d7rkx3y5j0rac98y0g";
2018-05-20 23:53:03 +02:00
}
else throw "Architecture not supported";
2020-04-12 15:11:21 +02: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 23:53:03 +02:00
install -D op $out/bin/op
'';
2020-04-12 15:11:21 +02:00
dontStrip = stdenv.isDarwin;
2020-04-12 15:11:21 +02:00
nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ autoPatchelfHook ];
doInstallCheck = true;
installCheckPhase = ''
$out/bin/op --version
'';
meta = with stdenv.lib; {
2018-08-01 15:19:07 +02:00
description = "1Password command-line tool";
2020-04-12 15:11:21 +02:00
homepage = "https://support.1password.com/command-line/";
downloadPage = "https://app-updates.agilebits.com/product_history/CLI";
2019-09-28 23:20:00 +02:00
maintainers = with maintainers; [ joelburget marsam ];
2018-08-01 15:19:07 +02:00
license = licenses.unfree;
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
};
}