summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2017-09-11 18:26:08 +0200
committerRobert Helgesson <robert@rycee.net>2017-09-11 18:27:29 +0200
commit99b09a200675f83d310f9cccd813c37f5dc997c1 (patch)
treeb92ebf3fd4bbeb0123516224db339932b4759f61
parentf6537dafe2bdb1cae9b4f03f141fb80a18ace833 (diff)
downloadnixpkgs-99b09a200675f83d310f9cccd813c37f5dc997c1.tar
nixpkgs-99b09a200675f83d310f9cccd813c37f5dc997c1.tar.gz
nixpkgs-99b09a200675f83d310f9cccd813c37f5dc997c1.tar.bz2
nixpkgs-99b09a200675f83d310f9cccd813c37f5dc997c1.tar.lz
nixpkgs-99b09a200675f83d310f9cccd813c37f5dc997c1.tar.xz
nixpkgs-99b09a200675f83d310f9cccd813c37f5dc997c1.tar.zst
nixpkgs-99b09a200675f83d310f9cccd813c37f5dc997c1.zip
perl-Data-Dumper-Concise: 2.022 -> 2.023
-rw-r--r--pkgs/top-level/perl-packages.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 02d8480bf95..031c716cbc6 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -2958,10 +2958,14 @@ let self = _self // overrides; _self = with self; {
   };
 
   DataDumperConcise = buildPerlPackage rec {
-    name = "Data-Dumper-Concise-2.022";
+    name = "Data-Dumper-Concise-2.023";
     src = fetchurl {
-      url = "mirror://cpan/modules/by-module/Data/${name}.tar.gz";
-      sha256 = "0z7vxgk1f2kw2zpiimdsyf7jq9f4s5dhh3dlimq5yrirypnk03sc";
+      url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz";
+      sha256 = "a6c22f113caf31137590def1b7028a7e718eface3228272d0672c25e035d5853";
+    };
+    meta = {
+      description = "Less indentation and newlines plus sub deparsing";
+      license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
     };
   };