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

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

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

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