summary refs log tree commit diff
path: root/pkgs/tools/networking/sshpass/default.nix
blob: 3a8e106155f34ec788473da57285b725a154a45e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "sshpass-${version}";
  version = "1.05";
  
  src = fetchurl {
    url = "mirror://sourceforge/sshpass/sshpass-${version}.tar.gz";
    sha256 = "0gj8r05h1hy01vh4csygyw21z2hcxb72qcxkxxi3y34alr98gxy3";
  };
  
  meta = {
    homepage = http://sourceforge.net/projects/sshpass/;
    description = "Non-interactive ssh password auth";
    maintainers = [ stdenv.lib.maintainers.madjar ];
    platforms = stdenv.lib.platforms.linux;
  };
}