2022-10-21 18:38:19 +00:00
|
|
|
{ stdenv
|
|
|
|
, callPackage
|
|
|
|
, channel ? "stable"
|
2020-08-20 17:08:02 +00:00
|
|
|
, fetchurl
|
2022-10-21 18:38:19 +00:00
|
|
|
, lib
|
|
|
|
# This is only relevant for Linux, so we need to pass it through
|
|
|
|
, polkitPolicyOwners ? [ ] }:
|
2022-03-30 09:31:56 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
pname = "1password";
|
2023-03-04 12:14:45 +00:00
|
|
|
version = if channel == "stable" then "8.10.0" else "8.10.1-19.BETA";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
sources = {
|
|
|
|
stable = {
|
|
|
|
x86_64-linux = {
|
2022-08-21 13:32:41 +00:00
|
|
|
url = "https://downloads.1password.com/linux/tar/stable/x86_64/1password-${version}.x64.tar.gz";
|
2023-03-04 12:14:45 +00:00
|
|
|
sha256 = "sha256-mIplIW1XGb7EVlPIHgzL16zvVa/3ypfwTMtVSiSvYYE=";
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
2022-10-21 18:38:19 +00:00
|
|
|
aarch64-linux = {
|
|
|
|
url = "https://downloads.1password.com/linux/tar/stable/aarch64/1password-${version}.arm64.tar.gz";
|
2023-03-04 12:14:45 +00:00
|
|
|
sha256 = "sha256-xjbqZ/+sw3jBzbqhzd/mP7CZOCLYYi6KpX8Ypy/8/Es=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
x86_64-darwin = {
|
|
|
|
url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip";
|
2023-03-04 12:14:45 +00:00
|
|
|
sha256 = "sha256-06wOSKzxZ7xVAUyIa4Fv48Z6nbMsQ/o74mEyVkmgkJs=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
aarch64-darwin = {
|
|
|
|
url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip";
|
2023-03-04 12:14:45 +00:00
|
|
|
sha256 = "sha256-zDu3PBj6kvDVpiFuoOuNlmyiSK4ZVuUWX3rBBwlwEvo=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
beta = {
|
|
|
|
x86_64-linux = {
|
|
|
|
url = "https://downloads.1password.com/linux/tar/beta/x86_64/1password-${version}.x64.tar.gz";
|
2023-03-04 12:14:45 +00:00
|
|
|
sha256 = "sha256-F/dnA9mqtXXp5vx6OQ5aPrdeEBMg9g6nozzMMNAZWHk=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
aarch64-linux = {
|
|
|
|
url = "https://downloads.1password.com/linux/tar/beta/aarch64/1password-${version}.arm64.tar.gz";
|
2023-03-04 12:14:45 +00:00
|
|
|
sha256 = "sha256-u8ktPt7W4teCJoXq1eEdKZCEsKxjhep/7DMHSMtuFBA=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
x86_64-darwin = {
|
|
|
|
url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip";
|
2023-03-04 12:14:45 +00:00
|
|
|
sha256 = "sha256-dZ1Vv4oocDYlw2sibnokUyAKcZ2W7zKofTX2ELamilI=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
aarch64-darwin = {
|
|
|
|
url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip";
|
2023-03-04 12:14:45 +00:00
|
|
|
sha256 = "sha256-JA2U/PfW2+qHPjqIGQL5gWIdqtd5G1lL3+hecYh2lcE=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
src = fetchurl {
|
|
|
|
inherit (sources.${channel}.${stdenv.system}) url sha256;
|
|
|
|
};
|
2022-09-30 11:47:45 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-08-20 17:08:02 +00:00
|
|
|
description = "Multi-platform password manager";
|
|
|
|
homepage = "https://1password.com/";
|
2022-06-26 10:26:21 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2020-08-20 17:08:02 +00:00
|
|
|
license = licenses.unfree;
|
2022-04-27 09:35:20 +00:00
|
|
|
maintainers = with maintainers; [ timstott savannidgerinel maxeaubrey sebtm ];
|
2022-10-21 18:38:19 +00:00
|
|
|
platforms = builtins.attrNames sources.${channel};
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
2022-10-21 18:38:19 +00:00
|
|
|
|
|
|
|
in if stdenv.isDarwin
|
|
|
|
then callPackage ./darwin.nix { inherit pname version src meta; }
|
|
|
|
else callPackage ./linux.nix { inherit pname version src meta polkitPolicyOwners; }
|