2018-06-25 00:11:40 +02:00
|
|
|
{ stdenv, fetchzip }:
|
2018-05-08 09:23:07 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "1password-${version}";
|
2018-11-04 02:36:22 +01:00
|
|
|
version = "0.5.4";
|
2018-05-20 23:53:03 +02:00
|
|
|
src =
|
2018-08-20 21:11:29 +02:00
|
|
|
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";
|
2018-11-04 02:36:22 +01:00
|
|
|
sha256 = "0wni2hk5b1qfr24vi24jiprpi08k3qgaw9lqp61k41a1sjp3izv0";
|
2018-05-20 23:53:03 +02:00
|
|
|
stripRoot = false;
|
|
|
|
}
|
2018-08-20 21:11:29 +02:00
|
|
|
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";
|
2018-11-04 02:36:22 +01:00
|
|
|
sha256 = "169d5fl3cfw3xrlpm9nlmwbnp0xgh0la9qybzf8ragp0020nlyih";
|
2018-05-20 23:53:03 +02:00
|
|
|
stripRoot = false;
|
|
|
|
}
|
2018-08-20 21:11:29 +02:00
|
|
|
else if stdenv.hostPlatform.system == "x86_64-darwin" 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_darwin_amd64_v${version}.zip";
|
2018-11-04 02:36:22 +01:00
|
|
|
sha256 = "1scikv7v33kzg9rqsrz97yklxaskvif84br13zg8annm43k5vlma";
|
2018-05-20 23:53:03 +02:00
|
|
|
stripRoot = false;
|
|
|
|
}
|
|
|
|
else throw "Architecture not supported";
|
2018-05-08 09:23:07 +02:00
|
|
|
|
|
|
|
installPhase = ''
|
2018-05-20 23:53:03 +02:00
|
|
|
install -D op $out/bin/op
|
|
|
|
'';
|
|
|
|
postFixup = stdenv.lib.optionalString stdenv.isLinux ''
|
|
|
|
patchelf \
|
|
|
|
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
|
|
|
$out/bin/op
|
2018-05-08 09:23:07 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-08-01 15:19:07 +02:00
|
|
|
description = "1Password command-line tool";
|
|
|
|
homepage = https://support.1password.com/command-line/;
|
|
|
|
downloadPage = https://app-updates.agilebits.com/product_history/CLI;
|
|
|
|
maintainers = with maintainers; [ joelburget ];
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
|
2018-05-08 09:23:07 +02:00
|
|
|
};
|
|
|
|
}
|