libmypaint: fix build by pre-loading autotools tool resolution

Grimmauld e8455cf6 44ba1756

+9 -1
+9 -1
pkgs/by-name/li/libmypaint/package.nix
··· 56 57 doCheck = true; 58 59 - preConfigure = "./autogen.sh"; 60 61 meta = with lib; { 62 homepage = "http://mypaint.org/";
··· 56 57 doCheck = true; 58 59 + # don't rely on rigid autotools versions, instead preload whatever is in $PATH in the build environment. 60 + # libmypaint 1.6.1 only officially supports autotools up to 1.16, 61 + # 2.0.0 alphas support up to autotools 1.17. 62 + # However, we are now on autotools 1.18, so this would otherwise break. 63 + preConfigure = '' 64 + export AUTOMAKE=automake 65 + export ACLOCAL=aclocal 66 + ./autogen.sh 67 + ''; 68 69 meta = with lib; { 70 homepage = "http://mypaint.org/";