Commit graph

33 commits

Author SHA1 Message Date
Ben Siraphob 8c5d37129f pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
Sirio Balmelli 097d0836b4
gopass: 1.10.1 -> 1.11.0
Remove workaround introduced in dda50e73:
https://github.com/gopasspw/gopass/issues/1662
has now been fixed upstream.

Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
2021-01-13 14:14:48 +01:00
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Sirio Balmelli dda50e7348
gopass: fix impurity which breaks gopass after 'nix-store --gc'
gopass maintains a ~/.cache/gopass/gpg-binary.loc file
which stores an absolute path to the gpg executable,
overriding (and ignoring) the environment $PATH.

This creates a situation where gopass will work for a period of time
after install, but after gpg is upgraded and a 'nix-store --gc' is
performed, the cached gpg path will throw an error.

A gopass maintainer has declared this a wont-fix in
https://github.com/gopasspw/gopass/issues/1662

As a workaround, add a --run clause in the wrapper script
that removes this cache file.

Once (if) upstream fixes this issue, this cruft can be removed.

Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
2020-12-14 08:59:23 +01:00
Ben Siraphob 683a87dbeb treewide: remove periods from end of package descriptions 2020-10-17 08:22:31 -07:00
worldofpeace 77fd145f40
Merge pull request #96506 from equirosa/gopass
gopass: 1.9.2 -> 1.10.1
2020-08-28 05:30:50 -04:00
Eduardo Quiros 3416c08939
gopass: 1.9.2 -> 1.10.1 2020-08-27 17:16:07 -06:00
Mario Rodas 460161a99b
gopass: 1.9.2 -> 1.10.1
https://github.com/gopasspw/gopass/releases/tag/v1.10.0
https://github.com/gopasspw/gopass/releases/tag/v1.10.1
2020-08-24 04:20:00 +00:00
zowoq cea7cd902e buildGoModule packages: set doCheck = false 2020-08-10 16:02:30 +10:00
zowoq 3c5750d1cd buildGoModule packages: editorconfig fixes 2020-07-31 13:58:04 +10:00
Mario Rodas 7a642881c9
gopass: 1.9.1 -> 1.9.2
Changelog: https://github.com/gopasspw/gopass/releases/tag/v1.9.2
2020-05-14 05:48:28 -05:00
Colin L Rice d6162dab50
go-modules: Update files to use vendorSha256 2020-05-14 07:22:21 +01:00
Mario Rodas 943b8b6ebd
gopass: 1.9.0 -> 1.9.1
Changelog: https://github.com/gopasspw/gopass/releases/tag/v1.9.1
2020-05-09 15:40:00 -05:00
Roman Volosatovs 93dd4b5118
gopass: adapt to buildGoModule output naming scheme 2020-05-05 21:17:43 +02:00
Roman Volosatovs ae19e155a5
gopass: Add myself to maintainers 2020-05-05 20:38:29 +02:00
Roman Volosatovs 67f7f93fd6
gopass: Support passAlias parameter in derivation
Add a `passAlias` to `gopass` derivation, similarly to how there's `viAlias` parameter supported by vim/neovim derivations.
Apart from convenience this is also necessary for e.g. making `docker-credential-helpers` work without patching the latter - the package uses `pass` executable from `PATH` f78081d1f7/pass/pass_linux.go (L67). By setting `passAlias` to `true` (e.g. via overlays like so: 94971f34db/nixpkgs/overlays.nix (L315-L317)), secure Docker authentication via `gopass` "just works"™
2020-05-05 20:38:29 +02:00
Mario Rodas 47b57c4605
gopass: 1.8.6 -> 1.9.0
Changelog: https://github.com/gopasspw/gopass/releases/tag/v1.9.0
2020-05-01 16:20:00 -05:00
zowoq 148f8629cc gopass: use installShellFiles 2020-04-27 08:48:42 +10:00
Michael Reilly 84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Hugo 83cfaaccf4 gopass: fix build on darwin (#66244) 2019-08-07 10:33:07 +01:00
Cole Mickens f0950fa3f6 gopass: v1.8.5 -> v1.8.6; support wayland 2019-07-26 12:01:25 +02:00
worldofpeace 128d96e3c3 gopass: 1.8.4 -> 1.8.5
https://github.com/gopasspw/gopass/releases/tag/v1.8.5
2019-03-13 01:33:59 -04:00
Andreas Rammhold 84e1e62730
gopass: 1.8.3 -> 1.8.4 2019-01-09 22:08:58 +01:00
Mario Rodas c32752fb12
gopass: 1.8.2 -> 1.8.3 2018-12-16 19:09:43 -05:00
Michishige Kaito 8cf22dea82 gopass: 1.8.1 -> 1.8.2 2018-07-21 13:59:50 +01:00
Florian Klink 1588d6a549 gopass: override GOPASS_CONFIG to fix completion generation (#42400)
gopass tries to write a version number to it's configuaration, even when
just generating the shell completion scripts. This fails, as
/homeless-shelter is read-only inside the sandbox.
As error messages are printed to stdout instead of stderr
(see https://github.com/gopasspw/gopass/issues/877), the error message
lands inside the completion script, thus breaking it.

Workaround that by setting GOPASS_CONFIG to `/dev/null`
2018-06-25 00:52:15 +02:00
Vladyslav Mykhailichenko a64b88a833 gopass: 1.7.1 -> 1.8.1 2018-06-20 14:53:46 +03:00
Vladyslav M a0c480ab1f gopass: 1.6.11 -> 1.7.1 (#41078) 2018-05-25 15:43:41 +02:00
aszlig 8ce802e8c8
gopass: Add xclip to wrapperPath
This is another dependency needed when invoked with "gopass -c".

I opted for xclip instead of xsel, because xclip is tried first in
order.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @andir, @suvash, @mkaito
2018-05-06 05:07:39 +02:00
Michishige Kaito cda51a8a05 gopass: Install shell completion scripts
Shell completion needs to be generated by the `gopass` binary, and moved
into place for each of the supported shells.
2018-04-10 11:16:56 +01:00
Suvash Thapaliya fad95a35c5
gopass: 1.6.7 -> 1.6.11
Use the latest update
2018-02-27 13:35:43 +01:00
Andreas Rammhold eac3d9ce69
gopass: 1.6.6 -> 1.6.7 2018-01-04 03:13:34 +01:00
Andreas Rammhold 057d70ffec
gopass: init at 1.6.6 2017-12-21 12:20:07 +01:00