Merge pull request #47964 from NixOS/staging-next

Merge staging-next into master
This commit is contained in:
Frederik Rietdijk 2018-10-13 09:47:49 +02:00 committed by GitHub
commit 35ce480d69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 89 additions and 257 deletions

View File

@ -18,11 +18,11 @@ patchShebangs() {
local oldInterpreterLine
local newInterpreterLine
find "$dir" -type f -perm -0100 | while read f; do
if [ "$(head -1 "$f" | head -c+2)" != '#!' ]; then
# missing shebang => not a script
continue
fi
[ -e "$dir" ] || return 0
local f
while IFS= read -r -d $'\0' f; do
isScript "$f" || continue
oldInterpreterLine=$(head -1 "$f" | tail -c+3)
read -r oldPath arg0 args <<< "$oldInterpreterLine"
@ -61,7 +61,7 @@ patchShebangs() {
rm "$f.timestamp"
fi
fi
done
done < <(find "$dir" -type f -perm -0100 -print0)
stopNest
}

View File

@ -171,7 +171,7 @@ stdenv.mkDerivation {
postFixup = ''
# Make boost header paths relative so that they are not runtime dependencies
cd "$dev" && find include \( -name '*.hpp' -or -name '*.h' -or -name '*.ipp' \) \
-exec sed '1i#line 1 "{}"' -i '{}' \;
-exec sed '1s/^\xef\xbb\xbf//;1i#line 1 "{}"' -i '{}' \;
'' + optionalString (stdenv.hostPlatform.libc == "msvcrt") ''
$RANLIB "$out/lib/"*.a
'';

View File

@ -10,14 +10,14 @@
assert glSupport -> libGL != null;
let
version = "1.15.12";
version = "1.15.14";
inherit (stdenv.lib) optional optionals;
in stdenv.mkDerivation rec {
name = "cairo-${version}";
src = fetchurl {
url = "https://cairographics.org/${if stdenv.lib.mod (builtins.fromJSON (stdenv.lib.versions.minor version)) 2 == 0 then "releases" else "snapshots"}/${name}.tar.xz";
sha256 = "1jcl0mnqq6j2xip8p506g2cj54sfycm339rrd3p4g2jljhdhh8vn";
sha256 = "1399jfdpdhn4hf812hxlj1gyi3bznxwzhp2rnyq1nxjs05n6nmhn";
};
outputs = [ "out" "dev" "devdoc" ];

View File

@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "p11-kit-${version}";
version = "0.23.13";
version = "0.23.14";
src = fetchFromGitHub {
owner = "p11-glue";
repo = "p11-kit";
rev = version;
sha256 = "1z2rbw2qbwj64i88llc1mkf0263qa0kxc2350kg25r7mghxbw1y6";
sha256 = "0zmrw1ciybhnxjlsfb07wnf11ak5vrmy8y8fnz3mwm8v3w8dzlvw";
};
outputs = [ "out" "dev"];

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl, m4, perl, help2man }:
stdenv.mkDerivation rec {
name = "bison-3.0.5";
name = "bison-3.1";
src = fetchurl {
url = "mirror://gnu/bison/${name}.tar.gz";
sha256 = "0rnml9spd6p0i5qy9g4r82drwdr09r1z9cf4p89agbrkxqmrsffd";
sha256 = "0ip9krjf0lw57pk3wfbxgjhif1i18hm3vh35d1ifrvhnafskdjx7";
};
patches = []; # remove on another rebuild

View File

@ -9,18 +9,12 @@ stdenv.mkDerivation rec {
sha256 = "0biw882fp1lmgs6kpxznp1v6758r7dg9x8iv5a06k0b82bcdsc53";
};
# TODO Always do first way next mass rebuild.
buildInputs = stdenv.lib.optional
(!stdenv.hostPlatform.isLinux || !stdenv.buildPlatform.isLinux)
elf-header;
buildInputs = [ elf-header ];
# TODO Always do first way next mass rebuild.
preBuild = if !stdenv.hostPlatform.isLinux || !stdenv.buildPlatform.isLinux then ''
preBuild = ''
sed -i Makefile \
-e 's|--owner 0 --group 0||g' \
-e '/CC:=gcc/d'
'' else ''
sed "s|--owner 0 --group 0||g" -i Makefile
'';
makeFlags = [

View File

@ -908,11 +908,11 @@ let
}) // {inherit inputproto libX11 libXext xextproto libXfixes xproto ;};
libXinerama = (mkDerivation "libXinerama" {
name = "libXinerama-1.1.3";
name = "libXinerama-1.1.4";
builder = ./builder.sh;
src = fetchurl {
url = mirror://xorg/individual/lib/libXinerama-1.1.3.tar.bz2;
sha256 = "1qlqfvzw45gdzk9xirgwlp2qgj0hbsyiqj8yh8zml2bk2ygnjibs";
url = mirror://xorg/individual/lib/libXinerama-1.1.4.tar.bz2;
sha256 = "086p0axqj57nvkaqa6r00dnr9kyrn1m8blgf0zjy25zpxkbxn200";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libX11 libXext xextproto xineramaproto ];
@ -1136,11 +1136,11 @@ let
}) // {inherit ;};
libxcb = (mkDerivation "libxcb" {
name = "libxcb-1.13";
name = "libxcb-1.13.1";
builder = ./builder.sh;
src = fetchurl {
url = http://xcb.freedesktop.org/dist/libxcb-1.13.tar.bz2;
sha256 = "1ahxhmdqp4bhb90zmc275rmf5wixqra4bnw9pqnzyl1w3598g30q";
url = http://xcb.freedesktop.org/dist/libxcb-1.13.1.tar.bz2;
sha256 = "1i27lvrcsygims1pddpl5c4qqs6z715lm12ax0n3vx0igapvg7x8";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libxslt libpthreadstubs python libXau xcbproto libXdmcp ];

View File

@ -1,5 +1,5 @@
http://xcb.freedesktop.org/dist/libpthread-stubs-0.4.tar.bz2
http://xcb.freedesktop.org/dist/libxcb-1.13.tar.bz2
http://xcb.freedesktop.org/dist/libxcb-1.13.1.tar.bz2
http://xcb.freedesktop.org/dist/xcb-proto-1.13.tar.bz2
http://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.bz2
http://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.3.tar.bz2

View File

@ -73,7 +73,7 @@ mirror://xorg/individual/lib/libXfont-1.5.4.tar.bz2
mirror://xorg/individual/lib/libXfont2-2.0.3.tar.bz2
mirror://xorg/individual/lib/libXft-2.3.2.tar.bz2
mirror://xorg/individual/lib/libXi-1.7.9.tar.bz2
mirror://xorg/individual/lib/libXinerama-1.1.3.tar.bz2
mirror://xorg/individual/lib/libXinerama-1.1.4.tar.bz2
mirror://xorg/individual/lib/libxkbfile-1.0.9.tar.bz2
mirror://xorg/individual/lib/libXmu-1.1.2.tar.bz2
mirror://xorg/individual/lib/libXpm-3.5.12.tar.bz2

View File

@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
name = "lz4-${version}";
version = "1.8.2";
version = "1.8.3";
src = fetchFromGitHub {
sha256 = "0xbjbjrvgzypk8dnldakir06gb8m946d064lxx0qc4ky6m8n9hn2";
sha256 = "0lq00yi7alr9aip6dw0flykzi8yv7z43aay177n86spn9qms7s3g";
rev = "v${version}";
repo = "lz4";
owner = "lz4";

View File

@ -235,6 +235,19 @@ in buildEnv {
ln -s -t . ../texmf/doc/"$d"/*
)
done
'' +
# MkIV uses its own lookup mechanism and we need to initialize
# caches for it. Unsetting TEXMFCNF is needed to let mtxrun
# determine it from kpathsea so that the config path is given with
# "selfautodir:" as it will be in runtime. This is important because
# the cache is identified by a hash of this path.
''
if [[ -e "$out/bin/mtxrun" ]]; then
(
unset TEXMFCNF
mtxrun --generate
)
fi
''
+ bin.cleanBrokenLinks
;

View File

@ -344,7 +344,7 @@ let
sha256 = "0j21pcd82q9raz2hnh1qmsk7hsfzz9pzadvql6skdmhwshs9a5la";
};
buildInputs = [ pkgs.curl FileWhich IOAll ModuleBuildTiny PathClass PodMarkdown TestException TestNoWarnings TestOutput TestSpec TestTempDirTiny ];
propagatedBuildInputs = [ CPANPerlReleases CaptureTiny DevelPatchPerl PodUsage locallib ];
propagatedBuildInputs = [ CPANPerlReleases CaptureTiny DevelPatchPerl locallib ];
preConfigure = ''
patchShebangs .
@ -407,18 +407,6 @@ let
};
};
AttributeHandlers = buildPerlPackage {
name = "Attribute-Handlers-0.99";
src = fetchurl {
url = mirror://cpan/authors/id/R/RJ/RJBS/Attribute-Handlers-0.99.tar.gz;
sha256 = "937ea3ebfc9b14f4a4148bf3c32803709edbd12a387137a26370b38ee1fc9835";
};
meta = {
description = "Simpler definition of attribute handlers";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
AttributeParamsValidate = buildPerlPackage {
name = "Attribute-Params-Validate-1.21";
src = fetchurl {
@ -493,7 +481,6 @@ let
url = "mirror://cpan/authors/id/B/BI/BINGOS/${name}.tar.gz";
sha256 = "25cbc2d5626c14d39a0b5e4fe8383941e085c9a7e0aa873d86e81b6e709025f4";
};
propagatedBuildInputs = [ ModuleLoadConditional ];
meta = {
description = "Generic archive extracting mechanism";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
@ -522,7 +509,7 @@ let
meta = {
description = "API wrapper around the 'tar' utility";
};
buildInputs = [ Dumbbench TestSimple13 ];
buildInputs = [ Dumbbench ];
};
ArchiveZip = buildPerlPackage {
@ -720,14 +707,6 @@ let
};
};
base = buildPerlPackage {
name = "base-2.23";
src = fetchurl {
url = mirror://cpan/authors/id/R/RJ/RJBS/base-2.23.tar.gz;
sha256 = "40f55841299a9fe6fab03cd098f94e9221fb516978e9ef40fd8ff2cbd6625dde";
};
};
BC = buildPerlPackage rec {
name = "B-C-1.55";
src = fetchurl {
@ -1334,10 +1313,10 @@ let
};
CatalystRuntime = buildPerlPackage rec {
name = "Catalyst-Runtime-5.90118";
name = "Catalyst-Runtime-5.90119";
src = fetchurl {
url = mirror://cpan/authors/id/H/HA/HAARG/Catalyst-Runtime-5.90118.tar.gz;
sha256 = "a3e979fc822f500d065e39a03d1883179bfdae77a8372cce0070efd1bf1e9a33";
url = mirror://cpan/authors/id/E/ET/ETHER/Catalyst-Runtime-5.90119.tar.gz;
sha256 = "19fff77c70a4fc8df2909db82629fda7f25d3e5d01f0152a145f8f8973ea87c7";
};
buildInputs = [ TestFatal TypeTiny ];
propagatedBuildInputs = [ CGISimple CGIStruct ClassC3AdoptNEXT DataDump HTTPBody ModulePluggable MooseXEmulateClassAccessorFast MooseXGetopt MooseXMethodAttributes MooseXRoleWithOverloading PathClass PlackMiddlewareFixMissingBodyInRedirect PlackMiddlewareMethodOverride PlackMiddlewareRemoveRedundantBody PlackMiddlewareReverseProxy PlackTestExternalServer SafeIsa StringRewritePrefix TaskWeaken TextSimpleTable TreeSimpleVisitorFactory URIws ];
@ -2707,10 +2686,10 @@ let
};
CookieBaker = buildPerlModule rec {
name = "Cookie-Baker-0.09";
name = "Cookie-Baker-0.10";
src = fetchurl {
url = "mirror://cpan/authors/id/K/KA/KAZEBURO/${name}.tar.gz";
sha256 = "be020a634162b319cab55b6e2bf10556a33a210a2eee8a2f1aa1b19b5e33aa4f";
sha256 = "b42bad15b12da4cdc5c90c902faf3ad484281a42203fa4e7652866434f6fa4dd";
};
buildInputs = [ ModuleBuildTiny TestTime ];
propagatedBuildInputs = [ URI ];
@ -2806,19 +2785,6 @@ let
};
};
CPANMeta = buildPerlPackage rec {
name = "CPAN-Meta-2.150010";
src = fetchurl {
url = "mirror://cpan/authors/id/D/DA/DAGOLDEN/${name}.tar.gz";
sha256 = "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74";
};
meta = {
homepage = https://github.com/Perl-Toolchain-Gang/CPAN-Meta;
description = "The distribution metadata for a CPAN dist";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
CPANMetaCheck = buildPerlPackage rec {
name = "CPAN-Meta-Check-0.014";
src = fetchurl {
@ -2832,38 +2798,11 @@ let
};
};
CPANMetaRequirements = buildPerlPackage {
name = "CPAN-Meta-Requirements-2.140";
src = fetchurl {
url = mirror://cpan/authors/id/D/DA/DAGOLDEN/CPAN-Meta-Requirements-2.140.tar.gz;
sha256 = "0898645e8e86f0922f0f0502b503f592a8eb3d3176b4fd87adcc7ba51e751fa9";
};
meta = {
homepage = https://github.com/dagolden/CPAN-Meta-Requirements;
description = "A set of version requirements for a CPAN dist";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
CPANMetaYAML = buildPerlPackage rec {
name = "CPAN-Meta-YAML-0.018";
src = fetchurl {
url = "mirror://cpan/authors/id/D/DA/DAGOLDEN/${name}.tar.gz";
sha256 = "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik";
};
doCheck = true;
meta = {
homepage = https://github.com/dagolden/CPAN-Meta-YAML;
description = "Read and write a subset of YAML for CPAN Meta files";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
CPANPerlReleases = buildPerlPackage rec {
name = "CPAN-Perl-Releases-3.74";
name = "CPAN-Perl-Releases-3.76";
src = fetchurl {
url = "mirror://cpan/authors/id/B/BI/BINGOS/${name}.tar.gz";
sha256 = "0qdh79fl38cyq9kp2g2s934gl1nn5jd88rgmqarqcmja8xhpfcp3";
sha256 = "0p9anb92sfi6cfr3ia8yvd3scn0bzwh2r6z8f6jrawjr8lilgahj";
};
meta = {
homepage = https://github.com/bingos/cpan-perl-releases;
@ -3102,10 +3041,10 @@ let
};
CryptOpenSSLRSA = buildPerlPackage rec {
name = "Crypt-OpenSSL-RSA-0.30";
name = "Crypt-OpenSSL-RSA-0.31";
src = fetchurl {
url = mirror://cpan/authors/id/T/TO/TODDR/Crypt-OpenSSL-RSA-0.30.tar.gz;
sha256 = "23e13531397af102db4fd24bcf70137add7c85c23cca697c43aa71c2959a29ac";
url = mirror://cpan/authors/id/T/TO/TODDR/Crypt-OpenSSL-RSA-0.31.tar.gz;
sha256 = "4173403ad4cf76732192099f833fbfbf3cd8104e0246b3844187ae384d2c5436";
};
propagatedBuildInputs = [ CryptOpenSSLRandom ];
NIX_CFLAGS_COMPILE = "-I${pkgs.openssl.dev}/include";
@ -3560,7 +3499,7 @@ let
url = "mirror://cpan/authors/id/D/DR/DROLSKY/${name}.tar.gz";
sha256 = "4470f253b8d2720a4dd3fa3ae550995417c2269f3be7ff030e01afa04a3a9421";
};
buildInputs = [ Test2Suite TestSimple13 ];
buildInputs = [ Test2Suite ];
propagatedBuildInputs = [ NetDomainTLD ];
meta = {
description = "Domain and host name validation";
@ -3890,7 +3829,7 @@ let
sha256 = "757b3915c6b2aac89462c52fed36543f27dfb66abc98c895523d2ab95da65f94";
};
buildInputs = [ CPANMetaCheck FileShareDirInstall IPCSystemSimple TestFatal TestFileShareDir TestRequires TestWarnings ];
propagatedBuildInputs = [ FileShareDir ParamsValidationCompiler ScalarListUtils Specio namespaceautoclean ];
propagatedBuildInputs = [ FileShareDir ParamsValidationCompiler Specio namespaceautoclean ];
meta = {
description = "Localization support for DateTime.pm";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
@ -4505,18 +4444,6 @@ let
};
};
DigestMD5 = buildPerlPackage {
name = "Digest-MD5-2.55";
src = fetchurl {
url = mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-2.55.tar.gz;
sha256 = "03b198a2d14425d951e5e50a885d3818c3162c8fe4c21e18d7798a9a179d0e3c";
};
meta = {
description = "Perl interface to the MD-5 algorithm";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
DigestMD5File = buildPerlPackage {
name = "Digest-MD5-File-0.08";
src = fetchurl {
@ -5034,7 +4961,6 @@ let
description = "Parse a MIME Content-Type Header";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
propagatedBuildInputs = [ Encode ];
};
EmailMIMEEncodings = buildPerlPackage rec {
@ -5089,7 +5015,7 @@ let
sha256 = "c412372938510283d8c850127895e09c2b670f892e1c3992fd54c0c1a9064f14";
};
buildInputs = [ CaptureTiny ];
propagatedBuildInputs = [ EmailAbstract EmailAddress MooXTypesMooseLike ScalarListUtils SubExporter Throwable TryTiny libnet ];
propagatedBuildInputs = [ EmailAbstract EmailAddress MooXTypesMooseLike SubExporter Throwable TryTiny ];
meta = {
homepage = https://github.com/rjbs/Email-Sender;
description = "A library for sending email";
@ -8494,7 +8420,7 @@ let
url = mirror://cpan/authors/id/D/DR/DROLSKY/List-AllUtils-0.14.tar.gz;
sha256 = "e45aa65927ae1975a000cc2fed14274627fa5e2bd09bab826a5f2c41d17ef6cd";
};
propagatedBuildInputs = [ ListSomeUtils ListUtilsBy ScalarListUtils ];
propagatedBuildInputs = [ ListSomeUtils ListUtilsBy ];
meta = {
description = "Combines List::Util and List::MoreUtils in one bite-sized package";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
@ -8548,7 +8474,6 @@ let
preConfigure = ''
export LD=$CC
'';
propagatedBuildInputs = [ XSLoader ];
meta = {
description = "Provide the stuff missing in List::Util in XS";
license = with stdenv.lib.licenses; [ asl20 ];
@ -8617,14 +8542,6 @@ let
};
};
LocaleMaketext = buildPerlPackage {
name = "Locale-Maketext-1.28";
src = fetchurl {
url = mirror://cpan/authors/id/T/TO/TODDR/Locale-Maketext-1.28.tar.gz;
sha256 = "1sgpcnh9kqdnsizpwxzsyfv44id7gxsgkd9bmnhmj4g8hfs9712p";
};
};
LocaleMaketextFuzzy = buildPerlPackage {
name = "Locale-Maketext-Fuzzy-0.11";
src = fetchurl {
@ -9291,7 +9208,6 @@ let
url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz";
sha256 = "cea6c20afc6c10a3dc3b62a71df3f842dce13898443bd827242ff3f09f1f3d59";
};
propagatedBuildInputs = [ MathBigInt ];
meta = {
description = "Arbitrary big rational numbers";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
@ -9718,10 +9634,10 @@ let
};
ModuleCoreList = buildPerlPackage {
name = "Module-CoreList-5.20180820";
name = "Module-CoreList-5.20180920";
src = fetchurl {
url = mirror://cpan/authors/id/B/BI/BINGOS/Module-CoreList-5.20180820.tar.gz;
sha256 = "1ccs5mqcfxjv8bax2nfsg11b2vc3sqyapfapxyzrjhaa2fmdn54l";
url = mirror://cpan/authors/id/B/BI/BINGOS/Module-CoreList-5.20180920.tar.gz;
sha256 = "00gkfkajvamb207xslqakwpzyjdhbyf14l0bs9ywcw8q44n7ghaf";
};
meta = {
homepage = http://dev.perl.org/;
@ -9828,18 +9744,6 @@ let
};
};
ModuleLoadConditional = buildPerlPackage rec {
name = "Module-Load-Conditional-0.68";
src = fetchurl {
url = mirror://cpan/authors/id/B/BI/BINGOS/Module-Load-Conditional-0.68.tar.gz;
sha256 = "1zcq0s7q9bvk9wdv9ijfyddh3b8ck4n3w87rcx31lbsav5fba9vn";
};
meta = {
description = "Looking up module information / loading at runtime";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
ModuleManifest = buildPerlPackage {
name = "Module-Manifest-1.09";
src = fetchurl {
@ -9854,14 +9758,6 @@ let
};
};
ModuleMetadata = buildPerlPackage rec {
name = "Module-Metadata-1.000033";
src = fetchurl {
url = mirror://cpan/authors/id/E/ET/ETHER/Module-Metadata-1.000033.tar.gz;
sha256 = "13pzydb22693l33rfx6drwbhjxj04q80ds4m2nn2sbmm95wwr5mw";
};
};
ModulePath = buildPerlPackage rec {
name = "Module-Path-0.19";
src = fetchurl {
@ -10026,8 +9922,6 @@ let
url = "mirror://cpan/authors/id/S/SR/SRI/${name}.tar.gz";
sha256 = "0m36zlh58bvww15k9ybi6khrrr6ga308y38p49hfq204k7cy02zp";
};
buildInputs = [ ExtUtilsMakeMaker ];
propagatedBuildInputs = [ IOSocketIP JSONPP PodSimple TimeLocal ];
meta = {
homepage = https://mojolicious.org;
description = "Real-time web framework";
@ -10113,7 +10007,7 @@ let
sha256 = "973d0a35d9f39bf93bbc5206c25f5ec3651f96356f082d31873c0ac9a5c1cd82";
};
buildInputs = [ CPANMetaCheck TestCleanNamespaces TestFatal TestRequires ];
propagatedBuildInputs = [ ClassLoadXS DevelGlobalDestruction DevelOverloadInfo DevelStackTrace EvalClosure ModuleRuntimeConflicts PackageDeprecationManager PackageStashXS ScalarListUtils SubExporter ];
propagatedBuildInputs = [ ClassLoadXS DevelGlobalDestruction DevelOverloadInfo DevelStackTrace EvalClosure ModuleRuntimeConflicts PackageDeprecationManager PackageStashXS SubExporter ];
preConfigure = ''
export LD=$CC
'';
@ -10932,7 +10826,7 @@ let
url = mirror://cpan/authors/id/S/SK/SKAJI/Mouse-v2.5.6.tar.gz;
sha256 = "1j3048ip691j91rdig6wrlg6i4jdzhszxmz5pi2g7n355rl2w00l";
};
buildInputs = [ DevelPPPort ModuleBuildXSUtil TestException TestFatal TestLeakTrace TestOutput TestRequires TryTiny self.version ];
buildInputs = [ DevelPPPort ModuleBuildXSUtil TestException TestFatal TestLeakTrace TestOutput TestRequires TryTiny ];
perlPreHook = "export LD=$CC";
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isi686 "-fno-stack-protector";
hardeningDisable = stdenv.lib.optional stdenv.isi686 "stackprotector";
@ -11222,12 +11116,12 @@ let
};
NetDNS = buildPerlPackage rec {
name = "Net-DNS-1.17";
name = "Net-DNS-1.18";
src = fetchurl {
url = "mirror://cpan/authors/id/N/NL/NLNETLABS/${name}.tar.gz";
sha256 = "9a79fd8fea1a708726c18d193ae4437479206ccb20ffa7f0971371e172e2c2e0";
sha256 = "52ce1494fc9707fd5a60ed71db5cde727157b7f2363787d730d4d1bd9800a9d3";
};
propagatedBuildInputs = [ DigestHMAC IOSocketIP ];
propagatedBuildInputs = [ DigestHMAC ];
makeMakerFlags = "--noonline-tests";
meta = {
description = "Perl Interface to the Domain Name System";
@ -11290,10 +11184,10 @@ let
};
NetIDNEncode = buildPerlModule {
name = "Net-IDN-Encode-2.400";
name = "Net-IDN-Encode-2.401";
src = fetchurl {
url = mirror://cpan/authors/id/C/CF/CFAERBER/Net-IDN-Encode-2.400.tar.gz;
sha256 = "0a9knav5f9kjldrkxx1k47ivd3p23zkmi8aqgyhnxidhgasz1dlq";
url = mirror://cpan/authors/id/C/CF/CFAERBER/Net-IDN-Encode-2.401.tar.gz;
sha256 = "1b5hnlnaxnp9jzdk55dcfh4jviv9mv83y4plsr3hi7lkh06hwdyd";
};
buildInputs = [ TestNoWarnings ];
meta = {
@ -11889,7 +11783,7 @@ let
sha256 = "1jqn1l4m4i341g14kmjsf3a1kn7vv6z89cix0xjjgr1v70iywnyw";
};
propagatedBuildInputs = [ EvalClosure ExceptionClass ];
buildInputs = [ Specio Test2PluginNoWarnings Test2Suite TestSimple13 TestWithoutModule ];
buildInputs = [ Specio Test2PluginNoWarnings Test2Suite TestWithoutModule ];
meta = {
description = "Build an optimized subroutine parameter validator once, use it forever";
license = with stdenv.lib.licenses; [ artistic2 ];
@ -12257,14 +12151,6 @@ let
doCheck = false;
};
PerlOSType = buildPerlPackage rec {
name = "Perl-OSType-1.010";
src = fetchurl {
url = "mirror://cpan/authors/id/D/DA/DAGOLDEN/${name}.tar.gz";
sha256 = "1ch36kfjwm229xicb9k7b9fhisy58ihdr16vm8iwniymnna4kvg7";
};
};
PerlTidy = buildPerlPackage rec {
name = "Perl-Tidy-20180220";
src = fetchurl {
@ -13048,18 +12934,6 @@ let
};
};
PodUsage = buildPerlPackage {
name = "Pod-Usage-1.69";
src = fetchurl {
url = mirror://cpan/authors/id/M/MA/MAREKR/Pod-Usage-1.69.tar.gz;
sha256 = "1a920c067b3c905b72291a76efcdf1935ba5423ab0187b9a5a63cfc930965132";
};
propagatedBuildInputs = [ podlators ];
meta = {
description = "Pod::Usage extracts POD documentation and shows usage information";
};
};
PodWeaver = buildPerlPackage rec {
name = "Pod-Weaver-4.015";
src = fetchurl {
@ -14270,7 +14144,6 @@ let
url = "mirror://cpan/authors/id/E/EX/EXODIST/${name}.tar.gz";
sha256 = "ea3056d696bdeff21a99d340d5570887d39a8cc47bff23adfc82df6758cdd0ea";
};
buildInputs = [ TestSimple13 ];
propagatedBuildInputs = [ Importer ];
meta = {
description = "Tool for inspecting subroutines";
@ -14695,31 +14568,6 @@ let
};
};
TermANSIColor = buildPerlPackage {
name = "Term-ANSIColor-4.06";
src = fetchurl {
url = mirror://cpan/authors/id/R/RR/RRA/Term-ANSIColor-4.06.tar.gz;
sha256 = "8161c7434b1984bde588d75f22c786c46cb6d35d264d58111db0b82537de4bad";
};
meta = {
description = "Color output using ANSI escape sequences";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
TermCap = let version = "1.17"; in buildPerlPackage {
name = "Term-Cap-${version}";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JS/JSTOWE/Term-Cap-${version}.tar.gz";
sha256 = "0qyicyk4aikw6w3fm8c4y6hd7ff70crkl6bf64qmiakbgxy9p6p7";
};
meta = {
inherit version;
description = "Perl termcap interface";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
TermEncoding = buildPerlPackage {
name = "Term-Encoding-0.02";
src = fetchurl {
@ -14925,7 +14773,6 @@ let
url = mirror://cpan/authors/id/D/DR/DROLSKY/Test2-Plugin-NoWarnings-0.06.tar.gz;
sha256 = "002qk6qsm0l6r2kaxywvc38w0yf0mlavgywq8li076pn6kcw3242";
};
propagatedBuildInputs = [ TestSimple13 ];
buildInputs = [ IPCRun3 Test2Suite ];
meta = {
description = "Fail if tests warn";
@ -15577,7 +15424,7 @@ let
description = "Most commonly needed test functions and features";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
buildInputs = [ TestDeep TestDifferences TestException TestSimple13 TestWarn ];
buildInputs = [ TestDeep TestDifferences TestException TestWarn ];
};
TestNeeds = buildPerlPackage rec {
@ -15773,7 +15620,7 @@ let
sha256 = "0n6k310v2py787lkvhzrn8vndws9icdf8mighgl472k0x890xm5s";
};
buildInputs = [ TestAbortable TestFatal ];
propagatedBuildInputs = [ Moose TestSimple13 namespaceautoclean ];
propagatedBuildInputs = [ Moose namespaceautoclean ];
meta = {
homepage = https://github.com/rjbs/Test-Routine;
description = "Composable units of assertion";
@ -15915,7 +15762,7 @@ let
buildInputs = [ Test2Suite ];
propagatedBuildInputs = [ CaptureTiny ProbePerl TestSimple13 ];
propagatedBuildInputs = [ CaptureTiny ProbePerl ];
};
TestSharedFork = buildPerlPackage rec {
@ -16263,7 +16110,6 @@ let
description = "Interface to read and parse BibTeX files";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
propagatedBuildInputs = [ ScalarListUtils ];
};
TextBrew = buildPerlPackage rec {
@ -16788,18 +16634,6 @@ let
};
};
ThreadSemaphore = buildPerlPackage {
name = "Thread-Semaphore-2.13";
src = fetchurl {
url = mirror://cpan/authors/id/J/JD/JDHEDDEN/Thread-Semaphore-2.13.tar.gz;
sha256 = "e3fe2cc047575529c8ea4c168cef8fab2ec931729a1826ffca1ef63e7e45bc81";
};
meta = {
description = "Thread-safe semaphores";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
Throwable = buildPerlPackage rec {
name = "Throwable-0.200013";
src = fetchurl {
@ -17213,18 +17047,6 @@ let
};
};
UnicodeNormalize = buildPerlPackage rec {
name = "Unicode-Normalize-1.25";
src = fetchurl {
url = "mirror://cpan/authors/id/K/KH/KHW/${name}.tar.gz";
sha256 = "00b33a75d3b356ade2e09391ea2d32fac881671c18b1eb26b9ca31273d5b046c";
};
meta = {
description = "Unicode Normalization Forms";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
UnicodeString = buildPerlPackage rec {
name = "Unicode-String-2.10";
src = fetchurl {
@ -17467,12 +17289,11 @@ let
};
WWWFormUrlEncoded = buildPerlModule rec {
name = "WWW-Form-UrlEncoded-0.24";
name = "WWW-Form-UrlEncoded-0.25";
src = fetchurl {
url = mirror://cpan/authors/id/K/KA/KAZEBURO/WWW-Form-UrlEncoded-0.24.tar.gz;
sha256 = "04fh54zgmrlhrmdaqs2yrwqmqwk9hd737z7rnbbd438l36skn7vd";
url = mirror://cpan/authors/id/K/KA/KAZEBURO/WWW-Form-UrlEncoded-0.25.tar.gz;
sha256 = "0kh7qrskhbk4j253pr2q4vpn73q5k6fj517m3lnj8n755z9adxz1";
};
buildInputs = [ JSON ];
meta = {
description = "parser and builder for application/x-www-form-urlencoded";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
@ -17800,7 +17621,7 @@ let
sha256 = "9e6ac67c2cead5f918a060b8b9ccdbdcaa6d610be8517bba42a96cd56748b512";
};
buildInputs = [ PathTiny ];
propagatedBuildInputs = [ ScalarListUtils XMLParser ];
propagatedBuildInputs = [ XMLParser ];
meta = {
description = "Modules for parsing and evaluating XPath statements";
license = stdenv.lib.licenses.artistic2;
@ -17972,18 +17793,6 @@ let
};
};
XSLoader = buildPerlPackage {
name = "XSLoader-0.24";
src = fetchurl {
url = mirror://cpan/authors/id/S/SA/SAPER/XSLoader-0.24.tar.gz;
sha256 = "0pyqr12jsqagna75fm2gijfzw06wy1hrh5chn9hwnmcfddda66g8";
};
meta = {
description = "Dynamically load C libraries into Perl code";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
XSObjectMagic = buildPerlPackage rec {
name = "XS-Object-Magic-0.04";
src = fetchurl {
@ -18078,6 +17887,22 @@ let
DigestSHA = null;
"if" = null;
TestSimple = null;
AttributeHandlers = null; # part of Perl 5.26
base = null; # part of Perl 5.26
CPANMeta = null; # part of Perl 5.26
CPANMetaRequirements = null; # part of Perl 5.26
CPANMetaYAML = null; # part of Perl 5.26
DigestMD5 = null; # part of Perl 5.26
LocaleMaketext = null; # part of Perl 5.26
ModuleLoadConditional = null; # part of Perl 5.26
ModuleMetadata = null; # part of Perl 5.26
PerlOSType = null; # part of Perl 5.26
PodUsage = null; # part of Perl 5.26
TermANSIColor = null; # part of Perl 5.26
TermCap = null; # part of Perl 5.26
ThreadSemaphore = null; # part of Perl 5.26
UnicodeNormalize = null; # part of Perl 5.26
XSLoader = null; # part of Perl 5.26
ArchiveZip_1_53 = self.ArchiveZip;
Autobox = self.autobox;