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: 94d4fe854637
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f0e68d7977a0
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 11, 2019

  1. [cpan2nix] perlPackages.LWPUserAgentDNSHosts: init at 0.13

    dependencies:
    perlPackages.TestFakeHTTPD: init at 0.08
    volth committed Nov 11, 2019
    Copy the full SHA
    aedeba0 View commit details

Commits on Nov 15, 2019

  1. Merge pull request #73244 from volth/cpan2nix-2019-11-11

    perlPackages.LWPUserAgentDNSHosts: init at 0.13
    aanderse authored Nov 15, 2019
    Copy the full SHA
    f0e68d7 View commit details
Showing with 32 additions and 0 deletions.
  1. +32 −0 pkgs/top-level/perl-packages.nix
32 changes: 32 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -10539,6 +10539,22 @@ let
};
};

LWPUserAgentDNSHosts = buildPerlModule {
pname = "LWP-UserAgent-DNS-Hosts";
version = "0.13";
src = fetchurl {
url = mirror://cpan/authors/id/M/MA/MASAKI/LWP-UserAgent-DNS-Hosts-0.13.tar.gz;
sha256 = "0piwcsb0m1xpzxbakhr9zq45a9hq3rx7s55lrjg66nd4x5n7xs5y";
};
propagatedBuildInputs = [ LWP ScopeGuard ];
buildInputs = [ ModuleBuildTiny TestFakeHTTPD TestSharedFork TestTCP TestUseAllModules ];
meta = {
description = "Override LWP HTTP/HTTPS request's host like /etc/hosts";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
homepage = "https://github.com/masaki/p5-LWP-UserAgent-DNS-Hosts";
};
};

LWPUserAgentDetermined = buildPerlPackage {
pname = "LWP-UserAgent-Determined";
version = "1.07";
@@ -17524,6 +17540,22 @@ let
};
};

TestFakeHTTPD = buildPerlModule {
pname = "Test-Fake-HTTPD";
version = "0.08";
src = fetchurl {
url = mirror://cpan/authors/id/M/MA/MASAKI/Test-Fake-HTTPD-0.08.tar.gz;
sha256 = "1jkflkcjzrdvnlxff1xqfhfdcpsmvvjqzayl7hk3whavsxdrf9yh";
};
propagatedBuildInputs = [ HTTPDaemon Plack ];
buildInputs = [ LWP ModuleBuildTiny TestException TestSharedFork TestTCP TestUseAllModules ];
meta = {
description = "a fake HTTP server";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
homepage = "https://github.com/masaki/Test-Fake-HTTPD";
};
};

TestFatal = buildPerlPackage {
pname = "Test-Fatal";
version = "0.014";