From 30f1bc1a6496693e866f06cfe72fd3a9980691a5 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sat, 23 Apr 2016 12:36:09 +0200 Subject: [PATCH] perl-Test-Fatal: 0.013 -> 0.014 --- pkgs/top-level/perl-packages.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index ee389880ea9a..ffcc0496118e 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11852,17 +11852,18 @@ let self = _self // overrides; _self = with self; { }; }; - TestFatal = buildPerlPackage { - name = "Test-Fatal-0.013"; + TestFatal = buildPerlPackage rec { + name = "Test-Fatal-0.014"; src = fetchurl { - url = mirror://cpan/authors/id/R/RJ/RJBS/Test-Fatal-0.013.tar.gz; - sha256 = "1rrndzkjff3bdlzzdsfsd3fhng142la2m74ihkgv17islkp17yq2"; + url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; + sha256 = "bcdcef5c7b2790a187ebca810b0a08221a63256062cfab3c3b98685d91d1cbb0"; }; propagatedBuildInputs = [ TryTiny ]; meta = { - homepage = https://github.com/rjbs/test-fatal; + homepage = https://github.com/rjbs/Test-Fatal; description = "Incredibly simple helpers for testing code with exceptions"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; }; };