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-10-26 10:20:00 +01:00
|
|
|
version = "0.7.0";
|
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-10-26 10:20:00 +01:00
|
|
|
sha256 = "1lhp0ws543855rvpvh84rjvyi471259lg618cciqj8j6k04ls1g0";
|
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-10-26 10:20:00 +01:00
|
|
|
sha256 = "1sjv5qrc80fk9yz0cn2yj0cdm47ab3ch8n9hzj9hv9d64gjv4w8n";
|
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-10-26 10:20:00 +01:00
|
|
|
sha256 = "1hnixmq7mrc6ky79k3s61vv89v4qhkm31kyni3rscibfrab0r8ir";
|
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;
|
2019-09-28 22:20:00 +01:00
|
|
|
maintainers = with maintainers; [ joelburget marsam ];
|
2018-08-01 14:19:07 +01:00
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
|
2018-05-08 08:23:07 +01:00
|
|
|
};
|
|
|
|
}
|