Merge pull request #29725 from rvl/guile-lib

guile-lib: Disable a test which doesn't work with Guile 2.2

authored by

Jörg Thalheim and committed by
GitHub
ffe34944 50946a79

+7 -1
+7 -1
pkgs/development/guile-modules/guile-lib/default.nix
··· 1 - {stdenv, fetchurl, guile, texinfo}: 1 + {stdenv, fetchurl, guile, texinfo, pkgconfig}: 2 2 3 3 assert stdenv ? cc && stdenv.cc.isGNU; 4 4 ··· 10 10 sha256 = "1f9n2b5b5r75lzjinyk6zp6g20g60msa0jpfrk5hhg4j8cy0ih4b"; 11 11 }; 12 12 13 + nativeBuildInputs = [pkgconfig]; 13 14 buildInputs = [guile texinfo]; 15 + 16 + # One test doesn't seem to be compatible with guile_2_2 17 + patchPhase = '' 18 + sed -i -e '/sxml.ssax.scm/d' unit-tests/Makefile* 19 + ''; 14 20 15 21 doCheck = true; 16 22