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 58ad01a commit dcdbe96Copy full SHA for dcdbe96
pkgs/top-level/perl-packages.nix
@@ -2945,11 +2945,15 @@ let self = _self // overrides; _self = with self; {
2945
};
2946
2947
2948
- DataDumper = buildPerlPackage {
2949
- name = "Data-Dumper-2.154";
+ DataDumper = buildPerlPackage rec {
+ name = "Data-Dumper-2.161";
2950
src = fetchurl {
2951
- url = mirror://cpan/authors/id/S/SM/SMUELLER/Data-Dumper-2.154.tar.gz;
2952
- sha256 = "e30fcb6dea290cda85b67fc46d227a2ea890a8bd36c213557adec9c99ebd212f";
+ url = "mirror://cpan/authors/id/S/SM/SMUELLER/${name}.tar.gz";
+ sha256 = "3aa4ac1b042b3880438165fb2b2139d377564a8e9928ffe689ede5304ee90558";
2953
+ };
2954
+ outputs = [ "out" ];
2955
+ meta = {
2956
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
2957
2958
2959
0 commit comments