Merge pull request #37865 from teto/gnulib

gnulib: symlink include/ to lib/
This commit is contained in:
Matthew Justin Bauer 2018-04-17 10:13:36 -05:00 committed by GitHub
commit e5a7783698
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,8 +9,12 @@ stdenv.mkDerivation {
sha256 = "0sifr3bkmhyr5s6ljgfyr0fw6w49ajf11rlp1r797f3r3r6j9w4k";
};
installPhase = "mkdir -p $out; mv * $out/";
dontFixup = true;
# no "make install", gnulib is a collection of source code
installPhase = ''
mkdir -p $out; mv * $out/
ln -s $out/lib $out/include
'';
meta = {
homepage = http://www.gnu.org/software/gnulib/;