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

stdenv.mkDerivation rec {
  pname = "sshpass";
  version = "1.09";

  src = fetchurl {
    url = "mirror://sourceforge/sshpass/sshpass-${version}.tar.gz";
    sha256 = "sha256-cXRuXgV//psAtErEBFO/RwkZMMupa76o3Ehxfe3En7c=";
  };

  meta = with lib; {
    homepage = "https://sourceforge.net/projects/sshpass/";
    description = "Non-interactive ssh password auth";
    license = licenses.gpl2;
    maintainers = [ maintainers.madjar ];
    platforms = platforms.unix;
  };
}