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-09-28 20:15:15 +00:00
version = "0.6.2";
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-09-28 20:15:15 +00:00
sha256 = "08ha4qr064jyivsp8z3q2cwmmm6klqyicc1i9vpf7zd9xmmx72rd";
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-09-28 20:15:15 +00:00
sha256 = "1fjhn1k9h6rlrgin5czvpig8h70dh14i5k20g77jvxq24bf0sn9m";
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-09-28 20:15:15 +00:00
sha256 = "1x7pj41a4wra3ws09cyc063ai5isf12qbkm2hxiiiq5glnacpvpl";
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;
maintainers = with maintainers; [ joelburget ];
license = licenses.unfree;
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
};
}