at 23.11-beta 19 lines 501 B view raw
1{lib, stdenv, fetchurl}: 2 3stdenv.mkDerivation rec { 4 pname = "sshpass"; 5 version = "1.10"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/sshpass/sshpass-${version}.tar.gz"; 9 sha256 = "sha256-rREGwgPLtWGFyjutjGzK/KO0BkaWGU2oefgcjXvf7to="; 10 }; 11 12 meta = with lib; { 13 homepage = "https://sourceforge.net/projects/sshpass/"; 14 description = "Non-interactive ssh password auth"; 15 license = licenses.gpl2; 16 maintainers = [ maintainers.madjar ]; 17 platforms = platforms.unix; 18 }; 19}