Merge pull request #79464 from aanderse/perlPackages.NetSNPP

perlPackages.NetSNPP: init at 1.17
This commit is contained in:
Aaron Andersen 2020-02-07 11:25:49 -05:00 committed by GitHub
commit 4506f4ae47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13494,6 +13494,21 @@ let
doCheck = false; # The test suite fails, see https://rt.cpan.org/Public/Bug/Display.html?id=85799
};
NetSNPP = buildPerlPackage rec {
pname = "Net-SNPP";
version = "1.17";
src = fetchurl {
url = "mirror://cpan/authors/id/T/TO/TOBEYA/${pname}-${version}.tar.gz";
sha256 = "06b851d64596625e866359fb017dd0d08973e0ebc50c323f4a1d50ecdd868e76";
};
propagatedBuildInputs = [ libnet ];
doCheck = false;
meta = {
description = "Simple Network Pager Protocol Client";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
NetSSH = buildPerlPackage {
pname = "Net-SSH";
version = "0.09";