2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchzip, autoPatchelfHook, fetchurl, xar, cpio }:
|
2018-05-08 09:23:07 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-03 05:46:25 +01:00
|
|
|
pname = "1password";
|
2020-12-28 22:40:51 +01:00
|
|
|
version = "1.8.0";
|
2018-05-20 23:53:03 +02:00
|
|
|
src =
|
2020-06-28 20:50:49 +02: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 22:40:51 +01:00
|
|
|
"i686-linux" = "teoxscan+EZ76Q0sfKT6nt1w/LSsmDoiN2oh+NGO/4A=";
|
|
|
|
"x86_64-linux" = "nRK2GSwhQe5OgcAdR1fg0vUp3fzEkhwU/teIwsEEemw=";
|
2020-06-28 20:50:49 +02: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 22:40:51 +01:00
|
|
|
sha256 = "0pycia75vdfh6gxfd2hr32cxrryfxydid804n0v76l2fpr9v9v3d";
|
2020-06-28 20:50:49 +02:00
|
|
|
};
|
2018-05-08 09:23:07 +02:00
|
|
|
|
2021-01-15 06:42:41 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ xar cpio ];
|
2020-04-12 15:11:21 +02:00
|
|
|
|
2021-01-15 06:42:41 +01:00
|
|
|
unpackPhase = lib.optionalString stdenv.isDarwin ''
|
2020-04-12 15:11:21 +02:00
|
|
|
xar -xf $src
|
|
|
|
zcat Payload | cpio -i
|
|
|
|
'';
|
|
|
|
|
2018-05-08 09:23:07 +02:00
|
|
|
installPhase = ''
|
2018-05-20 23:53:03 +02:00
|
|
|
install -D op $out/bin/op
|
|
|
|
'';
|
2020-04-12 15:11:21 +02:00
|
|
|
|
2020-05-25 15:46:14 +02:00
|
|
|
dontStrip = stdenv.isDarwin;
|
|
|
|
|
2021-01-15 06:42:41 +01:00
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [ autoPatchelfHook ];
|
2018-05-08 09:23:07 +02:00
|
|
|
|
2020-05-25 15:46:14 +02:00
|
|
|
doInstallCheck = true;
|
|
|
|
|
|
|
|
installCheckPhase = ''
|
|
|
|
$out/bin/op --version
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with 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" ];
|
2018-05-08 09:23:07 +02:00
|
|
|
};
|
|
|
|
}
|