about summary refs log tree commit diff
diff options
context:
space:
mode:
authorStig <stig@stig.io>2023-08-26 01:49:21 +0200
committerGitHub <noreply@github.com>2023-08-26 01:49:21 +0200
commit5b5a68c21701d6b57cded6add3d0f22b31693fbb (patch)
tree368b88e8e112852ecb53b73e3b5d5104175ea87d
parent5690c4271f2998c304a45c91a0aeb8fb69feaea7 (diff)
parentd834d5384106efc3a453970668e4da89047f2a4d (diff)
Merge pull request #246984 from stigtsp/fix/perl-Connector-bump-and-crypt
perlPackages.Connector: 1.35 -> 1.47, fix test
-rw-r--r--pkgs/top-level/perl-packages.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index aff0e71fcca11..e720a70fafc35 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -4273,19 +4273,23 @@ with self; {
     };
   };
 
-  Connector = buildPerlPackage {
+  Connector = buildPerlModule {
     pname = "Connector";
-    version = "1.35";
+    version = "1.47";
     src = fetchurl {
-      url = "mirror://cpan/authors/id/M/MR/MRSCOTTY/Connector-1.35.tar.gz";
-      hash = "sha256-Qdl2bubNdaGcFsdeuQ3GT9/dXbp22NIJdo37FeVm3Eo=";
+      url = "mirror://cpan/authors/id/M/MR/MRSCOTTY/Connector-1.47.tar.gz";
+      hash = "sha256-I2R4pAq53cIVgu4na6krnjgbP8XtljkKLe2o4nSGeoM=";
     };
-    buildInputs = [ ConfigMerge ConfigStd ConfigVersioned DBDSQLite DBI IOSocketSSL JSON LWP LWPProtocolHttps ProcSafeExec TemplateToolkit YAML ];
+    buildInputs = [ ModuleBuildTiny ConfigMerge ConfigStd ConfigVersioned DBDSQLite DBI IOSocketSSL JSON LWP LWPProtocolHttps ProcSafeExec TemplateToolkit YAML ];
     propagatedBuildInputs = [ LogLog4perl Moose ];
     prePatch = ''
       # Attempts to use network.
       rm t/01-proxy-http.t
       rm t/01-proxy-proc-safeexec.t
+
+      # crypt() tests that use DES
+      rm t/01-builtin-password.t
+      rm t/01-builtin-password-scheme.t
     '';
     meta = {
       description = "A generic connection to a hierarchical-structured data set";