gnome-builder: document why tests and clang are disabled
This commit is contained in:
parent
4ab66373f0
commit
499ca65930
|
@ -104,10 +104,17 @@ in stdenv.mkDerivation {
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-Dpython_libprefix=${python3.libPrefix}"
|
"-Dpython_libprefix=${python3.libPrefix}"
|
||||||
"-Dwith_clang=false"
|
|
||||||
"-Dwith_docs=true"
|
"-Dwith_docs=true"
|
||||||
|
|
||||||
|
# Making the build system correctly detect clang header and library paths
|
||||||
|
# is difficult. Somebody should look into fixing this.
|
||||||
|
"-Dwith_clang=false"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Some tests fail due to being unable to find the Vte typelib, and I don't
|
||||||
|
# understand why. Somebody should look into fixing this.
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
preInstall = ''
|
preInstall = ''
|
||||||
export LC_ALL="en_US.utf-8"
|
export LC_ALL="en_US.utf-8"
|
||||||
'';
|
'';
|
||||||
|
@ -126,8 +133,6 @@ in stdenv.mkDerivation {
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
#doCheck = true;
|
|
||||||
|
|
||||||
passthru.updateScript = gnome3.updateScript { packageName = pname; };
|
passthru.updateScript = gnome3.updateScript { packageName = pname; };
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in New Issue