Merge pull request #256543 from foo-dogsquared/update-guile-lib

authored by Artturi and committed by GitHub 2301b120 6e40bbbd

+9 -1
+9 -1
pkgs/development/guile-modules/guile-lib/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchurl 4 + , autoreconfHook 4 5 , guile 5 6 , pkg-config 6 7 , texinfo ··· 16 17 }; 17 18 18 19 nativeBuildInputs = [ 20 + autoreconfHook 19 21 pkg-config 20 22 ]; 21 23 buildInputs = [ ··· 23 25 texinfo 24 26 ]; 25 27 28 + postPatch = '' 29 + substituteInPlace configure.ac \ 30 + --replace 'SITEDIR="$datadir/guile-lib"' 'SITEDIR=$datadir/guile/site/$GUILE_EFFECTIVE_VERSION' \ 31 + --replace 'SITECCACHEDIR="$libdir/guile-lib/guile/$GUILE_EFFECTIVE_VERSION/site-ccache"' 'SITECCACHEDIR="$libdir/guile/$GUILE_EFFECTIVE_VERSION/site-ccache"' 32 + ''; 33 + 26 34 makeFlags = [ "GUILE_AUTO_COMPILE=0" ]; 27 35 28 36 doCheck = !stdenv.isDarwin; ··· 43 51 for Guile". 44 52 ''; 45 53 license = licenses.gpl3Plus; 46 - maintainers = with maintainers; [ vyp ]; 54 + maintainers = with maintainers; [ vyp foo-dogsquared ]; 47 55 platforms = guile.meta.platforms; 48 56 }; 49 57 }