mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
luaPackages.luafilesystem: fix build on darwin
This commit is contained in:
parent
3a526deaee
commit
eaba666273
@ -137,9 +137,16 @@ let
|
|||||||
url = "https://github.com/keplerproject/luafilesystem/archive/v1_6_2.tar.gz";
|
url = "https://github.com/keplerproject/luafilesystem/archive/v1_6_2.tar.gz";
|
||||||
sha256 = "134azkxw84xp9g5qmzjsmcva629jm7plwcmjxkdzdg05vyd7kig1";
|
sha256 = "134azkxw84xp9g5qmzjsmcva629jm7plwcmjxkdzdg05vyd7kig1";
|
||||||
};
|
};
|
||||||
|
preConfigure = "substituteInPlace config --replace 'CC= gcc' '';"
|
||||||
|
+ stdenv.lib.optionalString stdenv.isDarwin ''
|
||||||
|
substituteInPlace config \
|
||||||
|
--replace 'LIB_OPTION= -shared' '###' \
|
||||||
|
--replace '#LIB_OPTION= -bundle' 'LIB_OPTION= -bundle'
|
||||||
|
substituteInPlace Makefile --replace '10.3' '10.5'
|
||||||
|
'';
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/keplerproject/luafilesystem";
|
homepage = "https://github.com/keplerproject/luafilesystem";
|
||||||
hydraPlatforms = stdenv.lib.platforms.linux;
|
hydraPlatforms = stdenv.lib.platforms.unix;
|
||||||
maintainers = with maintainers; [ flosse ];
|
maintainers = with maintainers; [ flosse ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user