From efcf92003841e61ea998b0cf97263c60661dbe8c Mon Sep 17 00:00:00 2001 From: volth Date: Sat, 7 Apr 2018 07:54:27 +0000 Subject: [PATCH] [cpan2nix] perlPackages.ModulePluggable: cleanup dependencies: perlPackages.AppFatPacker: init at 0.010007 --- pkgs/top-level/perl-packages.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 3e539ec2996..cdfbf62b831 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -272,6 +272,18 @@ let self = _self // overrides; _self = with self; { buildInputs = [ TestPod ]; }; + AppFatPacker = buildPerlPackage rec { + name = "App-FatPacker-0.010007"; + src = fetchurl { + url = mirror://cpan/authors/id/M/MS/MSTROUT/App-FatPacker-0.010007.tar.gz; + sha256 = "1g9nff9fdg7dvja0ix2yv32w5xcj963ybcf7x22j61g6r81845fi"; + }; + meta = { + description = "pack your dependencies onto your script file"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + Appcpanminus = buildPerlPackage rec { name = "App-cpanminus-1.7043"; src = fetchurl { @@ -9138,6 +9150,7 @@ let self = _self // overrides; _self = with self; { description = "Automatically give your module the ability to have plugins"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; + buildInputs = [ AppFatPacker ]; }; ModulePluggableFast = buildPerlPackage {