about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-05-05 19:00:12 -0500
committerGitHub <noreply@github.com>2020-05-05 19:00:12 -0500
commitb290ef69119c80fce2adf55a8bf1452f24262973 (patch)
tree842d0fee66140066e05061ee54f4a0df737749bd
parent5698e344658a8fb9ef3f3cad69b5c9472511ecb0 (diff)
parent93dd4b51185f7e5609aa2225ee51123eb9072853 (diff)
downloadnixlib-b290ef69119c80fce2adf55a8bf1452f24262973.tar
nixlib-b290ef69119c80fce2adf55a8bf1452f24262973.tar.gz
nixlib-b290ef69119c80fce2adf55a8bf1452f24262973.tar.bz2
nixlib-b290ef69119c80fce2adf55a8bf1452f24262973.tar.lz
nixlib-b290ef69119c80fce2adf55a8bf1452f24262973.tar.xz
nixlib-b290ef69119c80fce2adf55a8bf1452f24262973.tar.zst
nixlib-b290ef69119c80fce2adf55a8bf1452f24262973.zip
Merge pull request #86977 from rvolosatovs/fix/gopass-alias
gopass: Adapt to buildGoModule output naming scheme
-rw-r--r--pkgs/tools/security/gopass/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/security/gopass/default.nix b/pkgs/tools/security/gopass/default.nix
index 8d7cb5810d9f..59a5e800aedb 100644
--- a/pkgs/tools/security/gopass/default.nix
+++ b/pkgs/tools/security/gopass/default.nix
@@ -36,7 +36,7 @@ buildGoModule rec {
       installShellCompletion gopass.$shell
     done
   '' + stdenv.lib.optionalString passAlias ''
-    ln -s $bin/bin/gopass $bin/bin/pass
+    ln -s $out/bin/gopass $out/bin/pass
   '';
 
   postFixup = ''