mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
perl-packages: Add new package CarpAlways, v0.13.
This has been proven to be VERY handy for providing useful stacktraces in Perl. Just invoke it using: perl -MCarp::Always yourshinyscript.pl Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
4a412e9561
commit
8851638ea7
1 changed files with 12 additions and 0 deletions
|
@ -569,6 +569,18 @@ let self = _self // overrides; _self = with self; {
|
|||
};
|
||||
};
|
||||
|
||||
CarpAlways = buildPerlPackage rec {
|
||||
name = "Carp-Always-0.13";
|
||||
src = fetchurl {
|
||||
url = "mirror://cpan/authors/id/F/FE/FERREIRA/${name}.tar.gz";
|
||||
sha256 = "0i2rifkr7ybfcdsqana52487z7vxp2l5qdra0f6ik0ddhn6rzii1";
|
||||
};
|
||||
meta = {
|
||||
description = "Warns and dies noisily with stack backtraces";
|
||||
license = "perl";
|
||||
};
|
||||
};
|
||||
|
||||
CarpAssert = buildPerlPackage {
|
||||
name = "Carp-Assert-0.20";
|
||||
src = fetchurl {
|
||||
|
|
Loading…
Reference in a new issue