about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2019-04-26 00:26:44 +0000
committervolth <volth@volth.com>2019-04-26 00:43:41 +0000
commitfd1ac66836d4b5a1af03ca2410b902ad404174b5 (patch)
tree1cb57c77a42db36c0b0b3dd5c556ace4d1aa3493
parentf3558ac51e1f776d347d09dbfa77e836a2d8f56f (diff)
downloadnixlib-fd1ac66836d4b5a1af03ca2410b902ad404174b5.tar
nixlib-fd1ac66836d4b5a1af03ca2410b902ad404174b5.tar.gz
nixlib-fd1ac66836d4b5a1af03ca2410b902ad404174b5.tar.bz2
nixlib-fd1ac66836d4b5a1af03ca2410b902ad404174b5.tar.lz
nixlib-fd1ac66836d4b5a1af03ca2410b902ad404174b5.tar.xz
nixlib-fd1ac66836d4b5a1af03ca2410b902ad404174b5.tar.zst
nixlib-fd1ac66836d4b5a1af03ca2410b902ad404174b5.zip
perlPackages.HTTPDaemon: 6.04 -> 6.01
This undoes https://github.com/NixOS/nixpkgs/commit/6fb0e7a4e0fab0dd2f90a3c6eae8daf0ab40518d
The only problem with 6.04 is: it got new dependencies which fail to cross-compile.
Failure to cross-compile HTTP::Deamon leads to failure of LWP and XML::Parser, which are used in switch-to-configuration.pl
Thus upgrade HTTPDaemon from 6.01 to 6.04 broke cross-compilation of whole system closures.
-rw-r--r--pkgs/top-level/perl-packages.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 0d39a52b8130..c6d6cbbfdd62 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -7275,18 +7275,17 @@ let
     };
   };
 
-  HTTPDaemon = buildPerlModule {
-    name = "HTTP-Daemon-6.04";
+  HTTPDaemon = buildPerlPackage {
+    name = "HTTP-Daemon-6.01";
     src = fetchurl {
-      url = mirror://cpan/authors/id/O/OA/OALDERS/HTTP-Daemon-6.04.tar.gz;
-      sha256 = "12m8iasnmp2dh28jrgmi7z10a3gcyz85khyff2j5h7jqbs6ks1fz";
+      url = mirror://cpan/authors/id/G/GA/GAAS/HTTP-Daemon-6.01.tar.gz;
+      sha256 = "1hmd2isrkilf0q0nkxms1q64kikjmcw9imbvrjgky6kh89vqdza3";
     };
     propagatedBuildInputs = [ HTTPMessage ];
     meta = {
       description = "A simple http server class";
       license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
     };
-    buildInputs = [ ModuleBuildTiny TestNeeds ];
   };
 
   HTTPDate = buildPerlPackage {