Skip to content

Commit

Permalink
perlPackages.AppSqitch: add required perl packages
Browse files Browse the repository at this point in the history
  • Loading branch information
akegalj committed Oct 26, 2024
1 parent b0d7351 commit 6223be6
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -998,9 +998,8 @@ with self; {
url = "mirror://cpan/authors/id/D/DW/DWHEELER/App-Sqitch-v1.4.1.tar.gz";
hash = "sha256-yvMcyPdy46TJ1LP/Oo9oSm61sbPCYfTdwPkKiMNgB8Y=";
};
buildInputs = [ CaptureTiny TestDeep TestDir TestException TestFile TestFileContents TestMockModule TestMockObject TestNoWarnings TestWarn ];
propagatedBuildInputs = [ Clone ConfigGitLike DBI DateTime EncodeLocale HashMerge IOPager IPCRun3 IPCSystemSimple ListMoreUtils PathClass PerlIOutf8_strict PodParser StringFormatter StringShellQuote TemplateTiny Throwable TypeTiny URIdb libintl-perl ];
doCheck = false; # Can't find home directory.
buildInputs = [ CaptureTiny TestExit TestDeep TestDir TestException TestFile TestFileContents TestMockModule TestMockObject TestNoWarnings TestWarn ];
propagatedBuildInputs = [ Clone ConfigGitLike DBI DateTime EncodeLocale HashMerge IOPager IPCRun3 IPCSystemSimple ListMoreUtils PathClass PerlIOutf8_strict PodParser StringFormatter StringShellQuote TemplateTiny Throwable TypeTiny URIdb libintl-perl AlgorithmBackoff ];
meta = {
description = "Sensible database change management";
homepage = "https://sqitch.org";
Expand Down Expand Up @@ -22105,6 +22104,21 @@ with self; {
};
};

ReturnMultiLevel = buildPerlPackage {
pname = "Return-MultiLevel";
version = "0.08";
src = fetchurl {
url = "mirror://cpan/authors/id/P/PL/PLICEASE/Return-MultiLevel-0.08.tar.gz";
hash = "sha256-UbGu8wxcQAn2QCZ6CFiSEuh9zRAYAPDSD5xjXJ/+iKE=";
};
buildInputs = [ TestFatal ];
meta = {
homepage = "https://metacpan.org/pod/Return::MultiLevel";
description = "Return across multiple call levels";
license = with lib.licenses; [ artistic1 gpl1Plus ];
};
};

ReturnValue = buildPerlPackage {
pname = "Return-Value";
version = "1.666005";
Expand Down Expand Up @@ -25039,6 +25053,20 @@ with self; {
};
};

TestExit = buildPerlPackage {
pname = "Test-Exit";
version = "0.11";
src = fetchurl {
url = "mirror://cpan/authors/id/A/AR/ARODLAND/Test-Exit-0.11.tar.gz";
hash = "sha256-+9qS034EgdGO68geSNAlIotXGExZstWm9r34cELox7I=";
};
propagatedBuildInputs = [ ReturnMultiLevel ];
meta = {
description = "Test whether code exits without terminating testing";
license = with lib.licenses; [ artistic1 gpl1Plus ];
};
};

TestExpect = buildPerlPackage {
pname = "Test-Expect";
version = "0.34";
Expand Down

0 comments on commit 6223be6

Please sign in to comment.