nixpkgs/pkgs/by-name/ss/sshpass/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
534 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl}:
2014-09-10 14:01:39 +00:00
stdenv.mkDerivation rec {
pname = "sshpass";
2023-03-02 17:17:24 +00:00
version = "1.10";
2016-10-13 21:58:07 +00:00
2014-09-10 14:01:39 +00:00
src = fetchurl {
url = "mirror://sourceforge/sshpass/sshpass-${version}.tar.gz";
2023-03-02 17:17:24 +00:00
sha256 = "sha256-rREGwgPLtWGFyjutjGzK/KO0BkaWGU2oefgcjXvf7to=";
2014-09-10 14:01:39 +00:00
};
2016-10-13 21:58:07 +00:00
meta = with lib; {
homepage = "https://sourceforge.net/projects/sshpass/";
2014-09-10 14:01:39 +00:00
description = "Non-interactive ssh password auth";
2024-04-26 11:35:31 +00:00
license = licenses.gpl2Plus;
2018-08-11 12:33:52 +00:00
maintainers = [ maintainers.madjar ];
platforms = platforms.unix;
2024-02-11 02:19:15 +00:00
mainProgram = "sshpass";
2014-09-10 14:01:39 +00:00
};
}