1password: 1.9.1 -> 1.11.2 (#131497)

* 1password: 1.9.1 -> 1.11.2

Also, we are using the new `apple_universal` package 1password added
to support amd64 and the new M1 architecture. If this is a problem, we
can revert to 1.11.0 for now, which is the last version that uses the
old `darwin_amd64` package.

Co-authored-by: Mario Rodas <marsam@users.noreply.github.com>

authored by

David Reaver
Mario Rodas
and committed by
GitHub
9fc2cddf f49c4800

+6 -6
+6 -6
pkgs/applications/misc/1password/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "1password"; 5 - version = "1.9.1"; 6 src = 7 if stdenv.isLinux then fetchzip { 8 url = { ··· 11 "aarch64-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_arm_v${version}.zip"; 12 }.${stdenv.hostPlatform.system}; 13 sha256 = { 14 - "i686-linux" = "1x5khnp6yqrjf513x3y6l38rb121nib7d4aiz4cz7fh029kxjhd1"; 15 - "x86_64-linux" = "1ar8lzkndl7xzcinv93rzg8q25vb23fggbjkhgchgc5x9wkwk8hw"; 16 - "aarch64-linux" = "1q81pk6qmp96p1dbhx1ijln8f54rac8r81d4ghqx9v756s9szrr1"; 17 }.${stdenv.hostPlatform.system}; 18 stripRoot = false; 19 } else fetchurl { 20 - url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_darwin_amd64_v${version}.pkg"; 21 - sha256 = "0904wwy3wdhfvbkvpdap8141a9gqmn0dw45ikrzsqpg7pv1r2zch"; 22 }; 23 24 buildInputs = lib.optionals stdenv.isDarwin [ xar cpio ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "1password"; 5 + version = "1.11.2"; 6 src = 7 if stdenv.isLinux then fetchzip { 8 url = { ··· 11 "aarch64-linux" = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_linux_arm_v${version}.zip"; 12 }.${stdenv.hostPlatform.system}; 13 sha256 = { 14 + "i686-linux" = "0rh5bakj9qd43cf6wj5v46a3h98kcwqyc0f1yw72wvcacvjycyjz"; 15 + "x86_64-linux" = "00nf0cb8cxk1pvzr1wq778wvikzrlzy38r3rzkq44whdpdj50jzx"; 16 + "aarch64-linux" = "1gv282z49bj3ln5na4wb1z5455a64cyd54fp5i96k8shaxd0apxf"; 17 }.${stdenv.hostPlatform.system}; 18 stripRoot = false; 19 } else fetchurl { 20 + url = "https://cache.agilebits.com/dist/1P/op/pkg/v${version}/op_apple_universal_v${version}.pkg"; 21 + sha256 = "1pqdjr6d23j9fpwgahb0s1ni1bpjv9jajs1hapgq5kdrww2w7nhm"; 22 }; 23 24 buildInputs = lib.optionals stdenv.isDarwin [ xar cpio ];