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

Commits on Apr 9, 2020

  1. perlPackages.ModuleCompile: init at 0.37

    Souvik Sen authored and invokes-su committed Apr 9, 2020
    Copy the full SHA
    2c3b09b View commit details
  2. Merge pull request #84832 from deshaw/contrib/perl-module-compile

    perlPackages.ModuleCompile: init at 0.37
    aanderse authored Apr 9, 2020
    Copy the full SHA
    0888749 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
@@ -11835,6 +11835,21 @@ let
};
};

ModuleCompile = buildPerlPackage rec {
pname = "Module-Compile";
version = "0.37";
src = fetchurl {
url = "mirror://cpan/authors/id/I/IN/INGY/${pname}-${version}.tar.gz";
sha256 = "18e6c4c4d2d5e39c21dde60a64424eed547e1d234ecc73a35278ea08161a8078";
};
propagatedBuildInputs = [ CaptureTiny DigestSHA1 ];
meta = {
homepage = "https://github.com/ingydotnet/module-compile-pm";
description = "Perl Module Compilation";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};

ModuleCPANTSAnalyse = buildPerlPackage {
pname = "Module-CPANTS-Analyse";
version = "1.01";