2018-06-24 23:11:40 +01:00
|
|
|
{ stdenv, fetchzip }:
|
2018-05-08 08:23:07 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-03 04:46:25 +00:00
|
|
|
pname = "1password";
|
2019-09-28 21:15:15 +01:00
|
|
|
version = "0.6.2";
|
2018-05-20 22:53:03 +01:00
|
|
|
src =
|
2018-08-20 20:11:29 +01:00
|
|
|
if stdenv.hostPlatform.system == "i686-linux" then
|
2018-05-20 22:53:03 +01:00
|
|
|
fetchzip {
|
2018-06-24 23:11:40 +01:00
|
|
|
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_386_v${version}.zip";
|
2019-09-28 21:15:15 +01:00
|
|
|
sha256 = "08ha4qr064jyivsp8z3q2cwmmm6klqyicc1i9vpf7zd9xmmx72rd";
|
2018-05-20 22:53:03 +01:00
|
|
|
stripRoot = false;
|
|
|
|
}
|
2018-08-20 20:11:29 +01:00
|
|
|
else if stdenv.hostPlatform.system == "x86_64-linux" then
|
2018-05-20 22:53:03 +01:00
|
|
|
fetchzip {
|
2018-06-24 23:11:40 +01:00
|
|
|
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_amd64_v${version}.zip";
|
2019-09-28 21:15:15 +01:00
|
|
|
sha256 = "1fjhn1k9h6rlrgin5czvpig8h70dh14i5k20g77jvxq24bf0sn9m";
|
2018-05-20 22:53:03 +01:00
|
|
|
stripRoot = false;
|
|
|
|
}
|
2018-08-20 20:11:29 +01:00
|
|
|
else if stdenv.hostPlatform.system == "x86_64-darwin" then
|
2018-05-20 22:53:03 +01:00
|
|
|
fetchzip {
|
2018-06-24 23:11:40 +01:00
|
|
|
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_darwin_amd64_v${version}.zip";
|
2019-09-28 21:15:15 +01:00
|
|
|
sha256 = "1x7pj41a4wra3ws09cyc063ai5isf12qbkm2hxiiiq5glnacpvpl";
|
2018-05-20 22:53:03 +01:00
|
|
|
stripRoot = false;
|
|
|
|
}
|
|
|
|
else throw "Architecture not supported";
|
2018-05-08 08:23:07 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2018-05-20 22:53:03 +01: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 08:23:07 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-08-01 14:19:07 +01: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 08:23:07 +01:00
|
|
|
};
|
|
|
|
}
|