mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
* Install ssh-copy-id from the contrib directory.
svn path=/nixpkgs/trunk/; revision=8700
This commit is contained in:
parent
311dc72bf1
commit
1852a7d0f3
1 changed files with 7 additions and 0 deletions
|
@ -25,5 +25,12 @@ stdenv.mkDerivation {
|
||||||
ensureDir $out/empty
|
ensureDir $out/empty
|
||||||
";
|
";
|
||||||
|
|
||||||
|
postInstall = "
|
||||||
|
# Install ssh-copy-id, it's very useful.
|
||||||
|
cp contrib/ssh-copy-id $out/bin/
|
||||||
|
chmod +x $out/bin/ssh-copy-id
|
||||||
|
cp contrib/ssh-copy-id.1 $out/share/man/cat1/
|
||||||
|
";
|
||||||
|
|
||||||
installTargets = "install-nokeys";
|
installTargets = "install-nokeys";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue