mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
sshpass: Added expression
This commit is contained in:
parent
00f9015b34
commit
f7fe08ec4e
18
pkgs/tools/networking/sshpass/default.nix
Normal file
18
pkgs/tools/networking/sshpass/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -2211,6 +2211,8 @@ let
|
||||||
|
|
||||||
ssdeep = callPackage ../tools/security/ssdeep { };
|
ssdeep = callPackage ../tools/security/ssdeep { };
|
||||||
|
|
||||||
|
sshpass = callPackage ../tools/networking/sshpass { };
|
||||||
|
|
||||||
ssmtp = callPackage ../tools/networking/ssmtp {
|
ssmtp = callPackage ../tools/networking/ssmtp {
|
||||||
tlsSupport = true;
|
tlsSupport = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue