nixpkgs/pkgs/tools/networking/sshpass/default.nix

19 lines
492 B
Nix
Raw Normal View History

2014-09-10 14:01:39 +00:00
{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;
};
}