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: 3827343aec03
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 22a765d0da70
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 6, 2019

  1. keychain: Add long description

    Copied from the project home page today.
    chreekat committed Jun 6, 2019
    Copy the full SHA
    a2d3873 View commit details

Commits on Jun 7, 2019

  1. Merge pull request #62761 from chreekat/keychain-description

    keychain: Add long description
    worldofpeace authored Jun 7, 2019
    Copy the full SHA
    22a765d View commit details
Showing with 12 additions and 0 deletions.
  1. +12 −0 pkgs/tools/misc/keychain/default.nix
12 changes: 12 additions & 0 deletions pkgs/tools/misc/keychain/default.nix
Original file line number Diff line number Diff line change
@@ -38,5 +38,17 @@ stdenv.mkDerivation rec {
with stdenv.lib;
platforms.linux ++ platforms.darwin;
maintainers = with stdenv.lib.maintainers; [ sigma ];
longDescription = ''
Keychain helps you to manage SSH and GPG keys in a convenient and secure
manner. It acts as a frontend to ssh-agent and ssh-add, but allows you
to easily have one long running ssh-agent process per system, rather
than the norm of one ssh-agent per login session.
This dramatically reduces the number of times you need to enter your
passphrase. With keychain, you only need to enter a passphrase once
every time your local machine is rebooted. Keychain also makes it easy
for remote cron jobs to securely "hook in" to a long-running ssh-agent
process, allowing your scripts to take advantage of key-based logins.
'';
};
}