2017-05-02 11:01:22 +02:00
|
|
|
{ stdenv, fetchgit, ocaml, zlib, pcre, neko, camlp4 }:
|
2009-11-30 02:05:04 +01:00
|
|
|
|
2012-10-07 11:24:51 +02:00
|
|
|
stdenv.mkDerivation {
|
2017-05-02 11:01:22 +02:00
|
|
|
name = "haxe-3.4.2";
|
2009-12-11 14:58:23 +01:00
|
|
|
|
2017-05-02 11:01:22 +02:00
|
|
|
buildInputs = [ocaml zlib pcre neko camlp4];
|
2009-12-11 14:58:23 +01:00
|
|
|
|
2014-06-01 15:13:04 +02:00
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/HaxeFoundation/haxe.git";
|
2017-05-02 11:01:22 +02:00
|
|
|
sha256 = "1m5fp183agqv8h3ynhxw4kndkpq2d6arysmirv3zl3vz5crmpwqd";
|
2014-06-01 15:13:04 +02:00
|
|
|
fetchSubmodules = true;
|
|
|
|
|
2017-05-02 11:01:22 +02:00
|
|
|
# Tag 3.4.2
|
|
|
|
rev = "890f8c70cf23ce6f9fe0fdd0ee514a9699433ca7";
|
2009-11-30 02:05:04 +01:00
|
|
|
};
|
2010-03-17 00:34:56 +01:00
|
|
|
|
2012-10-07 11:24:51 +02:00
|
|
|
prePatch = ''
|
2017-05-02 11:01:22 +02:00
|
|
|
sed -i -e 's|"/usr/lib/haxe/std/";|"'"$out/lib/haxe/std/"'";\n&|g' src/main.ml
|
2012-10-07 11:24:51 +02:00
|
|
|
'';
|
|
|
|
|
2013-05-25 18:33:48 +02:00
|
|
|
buildFlags = [ "all" "tools" ];
|
|
|
|
|
2012-10-07 11:24:51 +02:00
|
|
|
installPhase = ''
|
|
|
|
install -vd "$out/bin" "$out/lib/haxe/std"
|
2014-06-01 15:13:04 +02:00
|
|
|
install -vt "$out/bin" haxe haxelib
|
2012-10-08 02:20:32 +02:00
|
|
|
cp -vr std "$out/lib/haxe"
|
2012-10-07 11:24:51 +02:00
|
|
|
'';
|
|
|
|
|
2015-03-20 08:32:52 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2012-10-07 11:24:51 +02:00
|
|
|
dontStrip = true;
|
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
meta = with stdenv.lib; {
|
2012-10-07 11:24:51 +02:00
|
|
|
description = "Programming language targeting JavaScript, Flash, NekoVM, PHP, C++";
|
2017-05-02 11:01:22 +02:00
|
|
|
homepage = https://haxe.org;
|
2015-05-27 21:56:04 +02:00
|
|
|
license = with licenses; [ gpl2 bsd2 /*?*/ ]; # -> docs/license.txt
|
|
|
|
maintainers = [ maintainers.marcweber ];
|
2016-12-13 19:22:31 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2012-10-07 11:24:51 +02:00
|
|
|
};
|
2009-11-30 02:05:04 +01:00
|
|
|
}
|