Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5e307dc68d9b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4506f4ae4791
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Feb 7, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    grahamc Graham Christensen
    Copy the full SHA
    7412a56 View commit details
  2. Merge pull request #79464 from aanderse/perlPackages.NetSNPP

    perlPackages.NetSNPP: init at 1.17
    aanderse authored Feb 7, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    grahamc Graham Christensen
    Copy the full SHA
    4506f4a View commit details
Showing with 15 additions and 0 deletions.
  1. +15 −0 pkgs/top-level/perl-packages.nix
15 changes: 15 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -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";