about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/ssh-tools/default.nix
blob: 8740633262fd974e9bb0455388fbc9c352eda4de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "ssh-tools";
  version = "1.6";

  src = fetchFromGitHub {
    owner = "vaporup";
    repo = pname;
    rev = "v${version}";
    sha256 = "0m0x9383p9ab4hdirncmrfha130iasa0v4cbif2y5nbxnxgh101r";
  };

  installPhase = ''
    mkdir -p $out/bin
    cp ssh-* $out/bin/
  '';

  meta = with lib; {
    description = "Collection of various tools using ssh";
    homepage = "https://github.com/vaporup/ssh-tools/";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}