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

Commits on Sep 11, 2017

  1. Copy the full SHA
    f6537da View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    Zuoqiu-Yingyi Yingyi / 颖逸
    Copy the full SHA
    99b09a2 View commit details
Showing with 12 additions and 8 deletions.
  1. +12 −8 pkgs/top-level/perl-packages.nix
20 changes: 12 additions & 8 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -2958,10 +2958,14 @@ let self = _self // overrides; _self = with self; {
};

DataDumperConcise = buildPerlPackage rec {
name = "Data-Dumper-Concise-2.022";
name = "Data-Dumper-Concise-2.023";
src = fetchurl {
url = "mirror://cpan/modules/by-module/Data/${name}.tar.gz";
sha256 = "0z7vxgk1f2kw2zpiimdsyf7jq9f4s5dhh3dlimq5yrirypnk03sc";
url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz";
sha256 = "a6c22f113caf31137590def1b7028a7e718eface3228272d0672c25e035d5853";
};
meta = {
description = "Less indentation and newlines plus sub deparsing";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

@@ -7914,18 +7918,18 @@ let self = _self // overrides; _self = with self; {
};
};

LogContextual = buildPerlPackage {
name = "Log-Contextual-0.006003";
LogContextual = buildPerlPackage rec {
name = "Log-Contextual-0.007001";
src = fetchurl {
url = mirror://cpan/authors/id/F/FR/FREW/Log-Contextual-0.006003.tar.gz;
sha256 = "0940s910n67arqvz7aji4z6vgzzl52aq3l3jg8vq4ygnkn7c9k21";
url = "mirror://cpan/authors/id/F/FR/FREW/${name}.tar.gz";
sha256 = "163c46f9cf4ed921356d300925a1c3ec4d7e0d20d1c678ade9ccc24efd990cd6";
};
buildInputs = [ TestFatal ];
propagatedBuildInputs = [ DataDumperConcise ExporterDeclare Moo ];
meta = {
homepage = https://github.com/frioux/Log-Contextual;
description = "Simple logging interface with a contextual log";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = with maintainers; [ ];
platforms = stdenv.lib.platforms.unix;
};
};