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";
|
2024-06-05 15:53:02 +00:00
|
|
|
version = if channel == "stable" then "8.10.33" else "8.10.34-10.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";
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-njSvRi/sA7l5+XxfCpv3FY9SmCv5oPix9l2EZewZg1M=";
|
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";
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-g4RMTlBQvJQaPD/6scYjpe7NWrL6gkjvh5b9LubTWaE=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
x86_64-darwin = {
|
|
|
|
url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip";
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-YzAYMk3SR+paIQYAZCx840u/k77soy17F15owpqRAU0=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
aarch64-darwin = {
|
|
|
|
url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip";
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-FlJnPMIv7mWh3dSACq01f16mB9EkVD2LOg3IIpvjwdY=";
|
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";
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-eX7D8D5KErFIQtyvg4oT+lR3A7sfRFpDMT7duigZTz0=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
aarch64-linux = {
|
|
|
|
url = "https://downloads.1password.com/linux/tar/beta/aarch64/1password-${version}.arm64.tar.gz";
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-dajdeU8TtD9Dbnp2MFedAl8tuQr275cUqGAnm/VF+OE=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
x86_64-darwin = {
|
|
|
|
url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip";
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-Dm8v7B8qDSBe1i7OJKQFn7YDPkw3Qj8YVtQkaQmdKuc=";
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
|
|
|
aarch64-darwin = {
|
|
|
|
url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip";
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-QSxJoVPlOQU7hbvbuVcB/kf5umRjJQuygMkXq6lE1CQ=";
|
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 {
|
2024-04-21 15:54:59 +00:00
|
|
|
inherit (sources.${channel}.${stdenv.system} or (throw "unsupported system ${stdenv.hostPlatform.system}")) url hash;
|
2022-10-21 18:38:19 +00:00
|
|
|
};
|
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;
|
2024-05-15 15:35:15 +00:00
|
|
|
maintainers = with maintainers; [ timstott savannidgerinel sebtm ];
|
2022-10-21 18:38:19 +00:00
|
|
|
platforms = builtins.attrNames sources.${channel};
|
2023-08-04 22:07:22 +00:00
|
|
|
mainProgram = "1password";
|
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; }
|