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

45 lines
1.6 KiB
Nix
Raw Normal View History

2018-06-25 00:11:40 +02:00
{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
2019-01-03 05:46:25 +01:00
pname = "1password";
2019-06-07 14:24:17 +02:00
version = "0.5.6-003";
2018-05-20 23:53:03 +02:00
src =
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";
2019-06-07 14:24:17 +02:00
sha256 = "11smnx8fh32qm3b82x2ps4y46q29h77x1j1dj3d5vs0vha9b8frj";
2018-05-20 23:53:03 +02:00
stripRoot = false;
}
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";
2019-06-07 14:24:17 +02:00
sha256 = "1qwxga6qmb3n76h2fl1lxhnz676cqbx8gic1b5c9hw88gnqwykb9";
2018-05-20 23:53:03 +02:00
stripRoot = false;
}
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";
2019-06-07 14:24:17 +02:00
sha256 = "0gzmwc20liqx2cqply06yarwp228ydfgfb26bmpxbvlp0cq7d07g";
2018-05-20 23:53:03 +02:00
stripRoot = false;
}
else throw "Architecture not supported";
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
'';
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" ];
};
}