1 { stdenvNoCC, lib, fetchFromGitHub, python3, openssh}:
3 stdenvNoCC.mkDerivation {
5 version = "2016-04-21";
6 src = fetchFromGitHub {
9 rev = "ebf8282728211dc4448d50f7e16e546ed03c22d2";
10 sha256 = "1jf19lz1gwn7cyp57j8d4zs5bq13iw3kw31m8nvr8h6sib2pf815";
14 substituteInPlace ssh-ident \
15 --replace 'ssh-agent >' '${openssh}/bin/ssh-agent >'
17 buildInputs = [ python3 ];
21 install -m 755 ssh-ident $out/bin/ssh-ident
25 homepage = "https://github.com/ccontavalli/ssh-ident";
26 description = "Start and use ssh-agent and load identities as necessary";
27 license = licenses.bsd2;
28 maintainers = with maintainers; [ telotortium ];
29 platforms = with platforms; unix;
30 mainProgram = "ssh-ident";