mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
Merge pull request #29725 from rvl/guile-lib
guile-lib: Disable a test which doesn't work with Guile 2.2
This commit is contained in:
commit
ffe34944ec
@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, guile, texinfo}:
|
||||
{stdenv, fetchurl, guile, texinfo, pkgconfig}:
|
||||
|
||||
assert stdenv ? cc && stdenv.cc.isGNU;
|
||||
|
||||
@ -10,8 +10,14 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1f9n2b5b5r75lzjinyk6zp6g20g60msa0jpfrk5hhg4j8cy0ih4b";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [pkgconfig];
|
||||
buildInputs = [guile texinfo];
|
||||
|
||||
# One test doesn't seem to be compatible with guile_2_2
|
||||
patchPhase = ''
|
||||
sed -i -e '/sxml.ssax.scm/d' unit-tests/Makefile*
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
preCheck =
|
||||
|
Loading…
Reference in New Issue
Block a user