We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent a0e6a89 commit c8dfc9bCopy full SHA for c8dfc9b
pkgs/top-level/perl-packages.nix
@@ -2827,11 +2827,15 @@ let self = _self // overrides; _self = with self; {
2827
};
2828
2829
2830
- DataDumper = buildPerlPackage {
2831
- name = "Data-Dumper-2.154";
+ DataDumper = buildPerlPackage rec {
+ name = "Data-Dumper-2.161";
2832
src = fetchurl {
2833
- url = mirror://cpan/authors/id/S/SM/SMUELLER/Data-Dumper-2.154.tar.gz;
2834
- sha256 = "e30fcb6dea290cda85b67fc46d227a2ea890a8bd36c213557adec9c99ebd212f";
+ url = "mirror://cpan/authors/id/S/SM/SMUELLER/${name}.tar.gz";
+ sha256 = "3aa4ac1b042b3880438165fb2b2139d377564a8e9928ffe689ede5304ee90558";
2835
+ };
2836
+ outputs = [ "out" ];
2837
+ meta = {
2838
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
2839
2840
2841
0 commit comments