mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
4a7f99d55d
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
76 lines
2.1 KiB
Nix
76 lines
2.1 KiB
Nix
{ lib, stdenv
|
|
, makeWrapper
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, git
|
|
, gnupg
|
|
, xclip
|
|
, wl-clipboard
|
|
, passAlias ? false
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gopass";
|
|
version = "1.10.1";
|
|
|
|
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gopasspw";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0dhh64mxfhk610wr7bpakzgmc4a4iyhfkkl3qhjp6a46g9iygana";
|
|
};
|
|
|
|
vendorSha256 = "07wv6yahx4yzr3h1x93x4r5rvw8wbfk836f04b4r9xjbnpq7lb2a";
|
|
|
|
doCheck = false;
|
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version} -X main.commit=${src.rev}" ];
|
|
|
|
wrapperPath = stdenv.lib.makeBinPath (
|
|
[
|
|
git
|
|
gnupg
|
|
xclip
|
|
] ++ stdenv.lib.optional stdenv.isLinux wl-clipboard
|
|
);
|
|
|
|
postInstall = ''
|
|
for shell in bash fish zsh; do
|
|
$out/bin/gopass completion $shell > gopass.$shell
|
|
installShellCompletion gopass.$shell
|
|
done
|
|
'' + stdenv.lib.optionalString passAlias ''
|
|
ln -s $out/bin/gopass $out/bin/pass
|
|
'';
|
|
|
|
# --run to work around WONTFIX in https://github.com/gopasspw/gopass/issues/1662
|
|
postFixup = ''
|
|
for bin in $out/bin/*; do
|
|
wrapProgram $bin \
|
|
--prefix PATH : "${wrapperPath}" \
|
|
--run 'rm -f "''${XDG_CONFIG_HOME:-~/.config}/gopass/gpg-binary.loc"'
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go";
|
|
homepage = "https://www.gopass.pw/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ andir rvolosatovs ];
|
|
platforms = platforms.unix;
|
|
|
|
longDescription = ''
|
|
gopass is a rewrite of the pass password manager in Go with the aim of
|
|
making it cross-platform and adding additional features. Our target
|
|
audience are professional developers and sysadmins (and especially teams
|
|
of those) who are well versed with a command line interface. One explicit
|
|
goal for this project is to make it more approachable to non-technical
|
|
users. We go by the UNIX philosophy and try to do one thing and do it
|
|
well, providing a stellar user experience and a sane, simple interface.
|
|
'';
|
|
};
|
|
}
|