browserpass: update app id

(cherry picked from commit cb93316fed)
This commit is contained in:
ash lea 2019-04-13 22:52:10 -04:00 committed by Robert Helgesson
parent 5c1d10497d
commit 2ccbf43e46
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -31,11 +31,11 @@ in {
else ".config/google-chrome/NativeMessagingHosts"; else ".config/google-chrome/NativeMessagingHosts";
in [ in [
{ {
target = "${dir}/com.dannyvankooten.browserpass.json"; target = "${dir}/com.github.browserpass.native.json";
source = "${pkgs.browserpass}/etc/chrome-host.json"; source = "${pkgs.browserpass}/etc/chrome-host.json";
} }
{ {
target = "${dir}/../policies/managed/com.dannyvankooten.browserpass.json"; target = "${dir}/../policies/managed/com.github.browserpass.native.json";
source = "${pkgs.browserpass}/etc/chrome-policy.json"; source = "${pkgs.browserpass}/etc/chrome-policy.json";
} }
] ]
@ -45,11 +45,11 @@ in {
else ".config/chromium/NativeMessagingHosts"; else ".config/chromium/NativeMessagingHosts";
in [ in [
{ {
target = "${dir}/com.dannyvankooten.browserpass.json"; target = "${dir}/com.github.browserpass.native.json";
source = "${pkgs.browserpass}/etc/chrome-host.json"; source = "${pkgs.browserpass}/etc/chrome-host.json";
} }
{ {
target = "${dir}/../policies/managed/com.dannyvankooten.browserpass.json"; target = "${dir}/../policies/managed/com.github.browserpass.native.json";
source = "${pkgs.browserpass}/etc/chrome-policy.json"; source = "${pkgs.browserpass}/etc/chrome-policy.json";
} }
] ]
@ -58,8 +58,8 @@ in {
target = (if isDarwin target = (if isDarwin
then "Library/Application Support/Mozilla/NativeMessagingHosts" then "Library/Application Support/Mozilla/NativeMessagingHosts"
else ".mozilla/native-messaging-hosts") else ".mozilla/native-messaging-hosts")
+ "/com.dannyvankooten.browserpass.json"; + "/com.github.browserpass.native.json";
source = "${pkgs.browserpass}/lib/mozilla/native-messaging-hosts/com.dannyvankooten.browserpass.json"; source = "${pkgs.browserpass}/lib/mozilla/native-messaging-hosts/com.github.browserpass.native.json";
} ] } ]
else if x == "vivaldi" then else if x == "vivaldi" then
let dir = if isDarwin let dir = if isDarwin
@ -67,11 +67,11 @@ in {
else ".config/vivaldi/NativeMessagingHosts"; else ".config/vivaldi/NativeMessagingHosts";
in [ in [
{ {
target = "${dir}/com.dannyvankooten.browserpass.json"; target = "${dir}/com.github.browserpass.native.json";
source = "${pkgs.browserpass}/etc/chrome-host.json"; source = "${pkgs.browserpass}/etc/chrome-host.json";
} }
{ {
target = "${dir}/../policies/managed/com.dannyvankooten.browserpass.json"; target = "${dir}/../policies/managed/com.github.browserpass.native.json";
source = "${pkgs.browserpass}/etc/chrome-policy.json"; source = "${pkgs.browserpass}/etc/chrome-policy.json";
} }
] ]