Skip to content

Commit

Permalink
perlPackages: bump some package versions
Browse files Browse the repository at this point in the history
- Crypt-JWT: 0.018 -> 0.019
- DBIx-Class: 0.082840 -> 0.082841
- Getopt-Long-Descriptive: 0.100 -> 0.101
- SQL-Abstract: 1.81 -> 1.85
  • Loading branch information
rycee committed Jan 29, 2018
1 parent 393e39e commit 1066663
Showing 1 changed file with 11 additions and 16 deletions.
27 changes: 11 additions & 16 deletions pkgs/top-level/perl-packages.nix
Expand Up @@ -2722,10 +2722,10 @@ let self = _self // overrides; _self = with self; {
};

CryptJWT = buildPerlPackage rec {
name = "Crypt-JWT-0.018";
name = "Crypt-JWT-0.019";
src = fetchurl {
url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz";
sha256 = "90e78f7f0ced17e5c2080ad8c7008ce3badd05186e2ff20cf9c7232ed863cdaf";
sha256 = "26aaaaedc153b04bdaaba7df7ac2f7ce3bdf672c8d7111d09347a8d0c794725c";
};
propagatedBuildInputs = [ CryptX JSONMaybeXS ];
meta = {
Expand Down Expand Up @@ -3835,15 +3835,12 @@ let self = _self // overrides; _self = with self; {
};

DBIxClass = buildPerlPackage rec {
# tests broken again
doCheck = false;
name = "DBIx-Class-0.082840";
name = "DBIx-Class-0.082841";
src = fetchurl {
url = "mirror://cpan/authors/id/R/RI/RIBASUSHI/${name}.tar.gz";
sha256 = "4049afd175e315ebcab945b19030aec40bcec46cc5611b0286a5a267ca7181ef";
sha256 = "d705f85825aced299020534349778537524526d64f524217ca362787f683c3bd";
};
patches = [ ../development/perl-modules/dbiclassx-fix.patch ]; # Remove after next release
buildInputs = [ DBDSQLite PackageStash SQLTranslator TestDeep TestException TestWarn ];
buildInputs = [ DBDSQLite PackageStash TestDeep TestException TestWarn ];
propagatedBuildInputs = [ ClassAccessorGrouped ClassC3Componentised ClassInspector ConfigAny ContextPreserve DBI DataDumperConcise DataPage DevelGlobalDestruction HashMerge MROCompat ModuleFind Moo PathClass SQLAbstract ScopeGuard SubName TryTiny namespaceclean ];
meta = {
homepage = http://www.dbix-class.org/;
Expand Down Expand Up @@ -6053,18 +6050,17 @@ let self = _self // overrides; _self = with self; {
};

GetoptLongDescriptive = buildPerlPackage rec {
name = "Getopt-Long-Descriptive-0.100";
name = "Getopt-Long-Descriptive-0.101";
src = fetchurl {
url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz";
sha256 = "1451e79310d1630de37690e3aba5c38ea5f01a486c5a43f0cd95bef2a02dffb6";
sha256 = "752e898ea6eb8706ceb836668ca645704f5dcbc3124b6d1b21d04007dbc46948";
};
buildInputs = [ CPANMetaCheck TestFatal TestWarnings ];
propagatedBuildInputs = [ ParamsValidate SubExporter ];
meta = {
homepage = https://github.com/rjbs/Getopt-Long-Descriptive;
description = "Getopt::Long, but simpler and more powerful";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.rycee ];
};
};

Expand Down Expand Up @@ -12313,17 +12309,16 @@ let self = _self // overrides; _self = with self; {
};

SQLAbstract = buildPerlPackage rec {
name = "SQL-Abstract-1.81";
name = "SQL-Abstract-1.85";
src = fetchurl {
url = "mirror://cpan/authors/id/R/RI/RIBASUSHI/${name}.tar.gz";
sha256 = "5f4d5618ce2424d62bbfdb5228b382e8be0e0ccedbb273d6d850e25d07e64f9f";
url = "mirror://cpan/authors/id/I/IL/ILMARI/${name}.tar.gz";
sha256 = "9f44afe031a0cc63a6ccabaa46ba7ec58ef4db940559cee7fbc2dfbbf37bccab";
};
buildInputs = [ TestDeep TestException TestWarn ];
propagatedBuildInputs = [ HashMerge MROCompat Moo ];
propagatedBuildInputs = [ HashMerge MROCompat Moo SubQuote ];
meta = {
description = "Generate SQL from Perl data structures";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.rycee ];
};
};

Expand Down

0 comments on commit 1066663

Please sign in to comment.