Doron Behar 2025-04-22 02:31:36 +03:00
parent 7e14c559f0
commit 92ff30c8f7

View file

@ -13,7 +13,7 @@
let let
# https://github.com/gopasspw/gopass-jsonapi/blob/v1.15.15/internal/jsonapi/manifest/manifest_path_linux.go # https://github.com/gopasspw/gopass-jsonapi/blob/v1.15.16/internal/jsonapi/manifest/manifest_path_linux.go
manifestPaths = { manifestPaths = {
firefox = "$out/lib/mozilla/native-messaging-hosts/com.justwatch.gopass.json"; firefox = "$out/lib/mozilla/native-messaging-hosts/com.justwatch.gopass.json";
chrome = "$out/etc/opt/chrome/native-messaging-hosts/com.justwatch.gopass.json"; chrome = "$out/etc/opt/chrome/native-messaging-hosts/com.justwatch.gopass.json";
@ -27,16 +27,16 @@ let
in in
buildGoModule rec { buildGoModule rec {
pname = "gopass-jsonapi"; pname = "gopass-jsonapi";
version = "1.15.15"; version = "1.15.16";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "gopasspw"; owner = "gopasspw";
repo = "gopass-jsonapi"; repo = "gopass-jsonapi";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-nayg7NTJH6bAPiguyuN37JivfWkpOUX/xI/+PHDi3UI="; hash = "sha256-Nl69SSqs18zG7eYhBafXFGBVNQglSeffg7Z0Y8zuLmc=";
}; };
vendorHash = "sha256-khX1CdzN+5T8q2hA3NyCxtz7uw9uDd9u61q3UslTtqs="; vendorHash = "sha256-zncWJSA6cUthwcFZQXtJmwJZujaXt0Rubcga8D0+ZQc=";
subPackages = [ "." ]; subPackages = [ "." ];
@ -72,7 +72,7 @@ buildGoModule rec {
# `gopass-jsonapi configure` will ask for them. (`--libpath` and `--global` # `gopass-jsonapi configure` will ask for them. (`--libpath` and `--global`
# are overriden by `--manifest-path`. `--libpath` is only used to # are overriden by `--manifest-path`. `--libpath` is only used to
# compute Firefox's global manifest path. See # compute Firefox's global manifest path. See
# https://github.com/gopasspw/gopass-jsonapi/blob/v1.15.15/setup_others.go#L33-L46) # https://github.com/gopasspw/gopass-jsonapi/blob/v1.15.16/setup_others.go#L33-L46)
# #
# `gopass-jsonapi configure` ask for confirmation before writing any files, # `gopass-jsonapi configure` ask for confirmation before writing any files,
# `echo y` gives it. # `echo y` gives it.