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

45 lines
1.6 KiB
Nix
Raw Normal View History

2018-06-24 22:11:40 +00:00
{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
2019-01-03 04:46:25 +00:00
pname = "1password";
2019-10-26 09:20:00 +00:00
version = "0.7.0";
2018-05-20 21:53:03 +00:00
src =
if stdenv.hostPlatform.system == "i686-linux" then
2018-05-20 21:53:03 +00:00
fetchzip {
2018-06-24 22:11:40 +00:00
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_386_v${version}.zip";
2019-10-26 09:20:00 +00:00
sha256 = "1lhp0ws543855rvpvh84rjvyi471259lg618cciqj8j6k04ls1g0";
2018-05-20 21:53:03 +00:00
stripRoot = false;
}
else if stdenv.hostPlatform.system == "x86_64-linux" then
2018-05-20 21:53:03 +00:00
fetchzip {
2018-06-24 22:11:40 +00:00
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_amd64_v${version}.zip";
2019-10-26 09:20:00 +00:00
sha256 = "1sjv5qrc80fk9yz0cn2yj0cdm47ab3ch8n9hzj9hv9d64gjv4w8n";
2018-05-20 21:53:03 +00:00
stripRoot = false;
}
else if stdenv.hostPlatform.system == "x86_64-darwin" then
2018-05-20 21:53:03 +00:00
fetchzip {
2018-06-24 22:11:40 +00:00
url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_darwin_amd64_v${version}.zip";
2019-10-26 09:20:00 +00:00
sha256 = "1hnixmq7mrc6ky79k3s61vv89v4qhkm31kyni3rscibfrab0r8ir";
2018-05-20 21:53:03 +00:00
stripRoot = false;
}
else throw "Architecture not supported";
installPhase = ''
2018-05-20 21:53:03 +00: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
'';
meta = with stdenv.lib; {
2018-08-01 13:19:07 +00: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 21:20:00 +00:00
maintainers = with maintainers; [ joelburget marsam ];
2018-08-01 13:19:07 +00:00
license = licenses.unfree;
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
};
}