92 lines
2.9 KiB
Nix
92 lines
2.9 KiB
Nix
{ stdenv, fetchFromGitHub, llvm, makeWrapper, pcre2, coreutils, which, libressl,
|
|
cc ? stdenv.cc, lto ? !stdenv.isDarwin }:
|
|
|
|
stdenv.mkDerivation ( rec {
|
|
name = "ponyc-${version}";
|
|
version = "0.21.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ponylang";
|
|
repo = "ponyc";
|
|
rev = version;
|
|
sha256 = "0cdp6wbpirl3jnlqkm0hbxyz67v00nwhi4hvk4sq2g74f36j2bnm";
|
|
};
|
|
|
|
buildInputs = [ llvm makeWrapper which ];
|
|
propagatedBuildInputs = [ cc ];
|
|
|
|
# Disable problematic networking tests
|
|
patches = [ ./disable-tests.patch ];
|
|
|
|
preBuild = ''
|
|
# Fix tests
|
|
substituteInPlace packages/process/_test.pony \
|
|
--replace '"/bin/' '"${coreutils}/bin/'
|
|
substituteInPlace packages/process/_test.pony \
|
|
--replace '=/bin' "${coreutils}/bin"
|
|
|
|
|
|
# Fix llvm-ar check for darwin
|
|
substituteInPlace Makefile \
|
|
--replace "llvm-ar-3.8" "llvm-ar"
|
|
|
|
# Remove impure system refs
|
|
substituteInPlace src/libponyc/pkg/package.c \
|
|
--replace "/usr/local/lib" ""
|
|
substituteInPlace src/libponyc/pkg/package.c \
|
|
--replace "/opt/local/lib" ""
|
|
|
|
for file in `grep -irl '/usr/local/opt/libressl/lib' ./*`; do
|
|
substituteInPlace $file --replace '/usr/local/opt/libressl/lib' "${stdenv.lib.getLib libressl}/lib"
|
|
done
|
|
|
|
# Fix ponypath issue
|
|
substituteInPlace Makefile \
|
|
--replace "PONYPATH=." "PONYPATH=.:\$(PONYPATH)"
|
|
|
|
export LLVM_CONFIG=${llvm}/bin/llvm-config
|
|
'' + stdenv.lib.optionalString ((!stdenv.isDarwin) && (!cc.isClang) && lto) ''
|
|
export LTO_PLUGIN=`find ${cc.cc}/ -name liblto_plugin.so`
|
|
'' + stdenv.lib.optionalString ((!stdenv.isDarwin) && (cc.isClang) && lto) ''
|
|
export LTO_PLUGIN=`find ${cc.cc}/ -name LLVMgold.so`
|
|
'';
|
|
|
|
makeFlags = [ "config=release" ] ++ stdenv.lib.optionals stdenv.isDarwin [ "bits=64" ]
|
|
++ stdenv.lib.optionals (stdenv.isDarwin && (!lto)) [ "lto=no" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test-ci";
|
|
|
|
preCheck = ''
|
|
export PONYPATH="$out/lib:${stdenv.lib.makeLibraryPath [ pcre2 libressl ]}"
|
|
'';
|
|
|
|
installPhase = ''
|
|
make config=release prefix=$out ''
|
|
+ stdenv.lib.optionalString stdenv.isDarwin '' bits=64 ''
|
|
+ stdenv.lib.optionalString (stdenv.isDarwin && (!lto)) '' lto=no ''
|
|
+ '' install
|
|
|
|
wrapProgram $out/bin/ponyc \
|
|
--prefix PATH ":" "${stdenv.cc}/bin" \
|
|
--set-default CC "$CC" \
|
|
--prefix PONYPATH : "$out/lib" \
|
|
--prefix PONYPATH : "${stdenv.lib.getLib pcre2}/lib" \
|
|
--prefix PONYPATH : "${stdenv.lib.getLib libressl}/lib"
|
|
'';
|
|
|
|
# Stripping breaks linking for ponyc
|
|
dontStrip = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Pony is an Object-oriented, actor-model, capabilities-secure, high performance programming language";
|
|
homepage = http://www.ponylang.org;
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ doublec kamilchm patternspandemic ];
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
|
};
|
|
})
|