uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
73
pkgs/tools/security/gopass/default.nix
Normal file
73
pkgs/tools/security/gopass/default.nix
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, makeWrapper
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
, git
|
||||
, gnupg
|
||||
, xclip
|
||||
, wl-clipboard
|
||||
, passAlias ? false
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gopass";
|
||||
version = "1.14.2";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gopasspw";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-JhLFax0UR/AVl/736pdsAyyQF/555YmLWLnZrsLDjlA=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-ESIlmY3SzmfWLqLxf62dOhAsHPOKc2YYSOhzpJCjvCQ=";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" ];
|
||||
|
||||
wrapperPath = lib.makeBinPath (
|
||||
[
|
||||
git
|
||||
gnupg
|
||||
xclip
|
||||
] ++ lib.optional stdenv.isLinux wl-clipboard
|
||||
);
|
||||
|
||||
postInstall = ''
|
||||
installManPage gopass.1
|
||||
installShellCompletion --zsh --name _gopass zsh.completion
|
||||
installShellCompletion --bash --name gopass.bash bash.completion
|
||||
installShellCompletion --fish --name gopass.fish fish.completion
|
||||
'' + lib.optionalString passAlias ''
|
||||
ln -s $out/bin/gopass $out/bin/pass
|
||||
'';
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram $out/bin/gopass \
|
||||
--prefix PATH : "${wrapperPath}" \
|
||||
--set GOPASS_NO_REMINDER true
|
||||
'';
|
||||
|
||||
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; [ rvolosatovs sikmir ];
|
||||
changelog = "https://github.com/gopasspw/gopass/raw/v${version}/CHANGELOG.md";
|
||||
|
||||
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.
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue