Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c94005358c18
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 69d0c1404c17
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 23, 2019

  1. password-store: link ext. man pages into the password-store $out

    When pass was installed with extensions in the system environment, the
    man pages for the selected extensions were not available globally
    because they were only available in a buildInput of the password-store
    derivation.
    
    This commit resolves the problem by linking the man pages from the
    extensions environment into the output directory of the password-store
    derivation.
    
    Bug 56850
    kamidon committed Mar 23, 2019
    Copy the full SHA
    9830436 View commit details

Commits on Mar 24, 2019

  1. password-store: link ext. man pages into the password-store $out (#58187

    )
    
    When pass was installed with extensions in the system environment, the
    man pages for the selected extensions were not available globally
    because they were only available in a buildInput of the password-store
    derivation.
    
    This commit resolves the problem by linking the man pages from the
    extensions environment into the output directory of the password-store
    derivation.
    
    Bug 56850
    xeji authored Mar 24, 2019
    Copy the full SHA
    69d0c14 View commit details
Showing with 3 additions and 0 deletions.
  1. +3 −0 pkgs/tools/security/pass/default.nix
3 changes: 3 additions & 0 deletions pkgs/tools/security/pass/default.nix
Original file line number Diff line number Diff line change
@@ -73,6 +73,9 @@ let
# Link extensions env
rmdir $out/lib/password-store/extensions
ln -s ${extensionsEnv}/lib/password-store/extensions $out/lib/password-store/.
for f in ${extensionsEnv}/share/man/man1/*.1.gz; do
ln -s $f $out/share/man/man1/
done
# Fix program name in --help
substituteInPlace $out/bin/pass \