nixpkgs/pkgs/development/compilers/ponyc/default.nix

92 lines
2.9 KiB
Nix
Raw Normal View History

2016-10-07 19:17:08 +00:00
{ stdenv, fetchFromGitHub, llvm, makeWrapper, pcre2, coreutils, which, libressl,
cc ? stdenv.cc, lto ? !stdenv.isDarwin }:
2016-10-07 19:17:08 +00:00
stdenv.mkDerivation ( rec {
name = "ponyc-${version}";
version = "0.23.0";
src = fetchFromGitHub {
2016-07-27 15:51:19 +00:00
owner = "ponylang";
repo = "ponyc";
2016-10-07 19:17:08 +00:00
rev = version;
sha256 = "1m0zvl30926652akyzpvy5m7jn35697d5mkg3xbn3yqwbsfk4yhk";
};
2016-10-07 19:17:08 +00:00
buildInputs = [ llvm makeWrapper which ];
propagatedBuildInputs = [ cc ];
2016-07-27 15:51:19 +00:00
# Disable problematic networking tests
patches = [ ./disable-tests.patch ];
2016-07-27 15:51:19 +00:00
preBuild = ''
# Fix tests
substituteInPlace packages/process/_test.pony \
2016-10-07 19:17:08 +00:00
--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)"
2016-07-27 15:51:19 +00:00
export LLVM_CONFIG=${llvm}/bin/llvm-config
2016-10-07 19:17:08 +00:00
'' + 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`
'';
2016-10-07 19:17:08 +00:00
makeFlags = [ "config=release" ] ++ stdenv.lib.optionals stdenv.isDarwin [ "bits=64" ]
++ stdenv.lib.optionals (stdenv.isDarwin && (!lto)) [ "lto=no" ];
2016-07-27 15:51:19 +00:00
enableParallelBuilding = true;
doCheck = true;
2016-10-07 19:17:08 +00:00
checkTarget = "test-ci";
preCheck = ''
2016-10-07 19:17:08 +00:00
export PONYPATH="$out/lib:${stdenv.lib.makeLibraryPath [ pcre2 libressl ]}"
'';
installPhase = ''
2016-10-07 19:17:08 +00:00
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" \
2016-10-07 19:17:08 +00:00
--prefix PONYPATH : "$out/lib" \
--prefix PONYPATH : "${stdenv.lib.getLib pcre2}/lib" \
--prefix PONYPATH : "${stdenv.lib.getLib libressl}/lib"
'';
2016-10-07 19:17:08 +00:00
# Stripping breaks linking for ponyc
dontStrip = true;
2017-03-21 12:12:24 +00:00
meta = with stdenv.lib; {
description = "Pony is an Object-oriented, actor-model, capabilities-secure, high performance programming language";
homepage = http://www.ponylang.org;
2017-03-21 12:12:24 +00:00
license = licenses.bsd2;
2017-08-29 18:26:24 +00:00
maintainers = with maintainers; [ doublec kamilchm patternspandemic ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
2016-10-07 19:17:08 +00:00
})