e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
79 lines
2.1 KiB
Nix
79 lines
2.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, makeWrapper
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, git
|
|
, gnupg
|
|
, xclip
|
|
, wl-clipboard
|
|
, passAlias ? false
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gopass";
|
|
version = "1.15.14";
|
|
|
|
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gopasspw";
|
|
repo = "gopass";
|
|
rev = "v${version}";
|
|
hash = "sha256-3oXdHjW3svGfOEoikEeGm4oU9j+7IBOHw5KH7CCV/uw=";
|
|
};
|
|
|
|
vendorHash = "sha256-GeppWyIWE8kYIqhRf1iHksWksdjbIzy96rRpx+qQ3L0=";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" ];
|
|
|
|
wrapperPath = lib.makeBinPath (
|
|
[
|
|
git
|
|
gnupg
|
|
xclip
|
|
] ++ lib.optional stdenv.hostPlatform.isLinux wl-clipboard
|
|
);
|
|
|
|
postInstall = ''
|
|
installManPage gopass.1
|
|
installShellCompletion --cmd gopass \
|
|
--zsh zsh.completion \
|
|
--bash bash.completion \
|
|
--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
|
|
'';
|
|
passthru = {
|
|
inherit wrapperPath;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "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/blob/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.
|
|
'';
|
|
mainProgram = "gopass";
|
|
};
|
|
}
|