haxe: Update to stable version 3.00.
So, finally, Haxe 3 is stable :-) An overview of the new features can be found here: http://haxe.org/manual/haxe3/features This version now has a new build target "tools", so let's use it. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
f94d623ba8
commit
64128b7297
@ -1,20 +1,21 @@
|
|||||||
{ stdenv, fetchsvn, ocaml, zlib, neko }:
|
{ stdenv, fetchsvn, ocaml, zlib, neko }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "haxe-2.10";
|
name = "haxe-3.00";
|
||||||
|
|
||||||
buildInputs = [ocaml zlib neko];
|
buildInputs = [ocaml zlib neko];
|
||||||
|
|
||||||
srcs = fetchsvn {
|
srcs = fetchsvn {
|
||||||
url = "http://haxe.googlecode.com/svn/tags/v2-10";
|
url = "http://haxe.googlecode.com/svn/trunk";
|
||||||
sha256 = "0vwdlj0vmmf97bg6cish7yah36aca2q599vwzbr1m0jpjbvindkh";
|
sha256 = "0yfqqyr2jyd9b15xadcvv3fiaipxzgnilqnbbgd6pnaj1zsm31lr";
|
||||||
|
rev = 6706;
|
||||||
ignoreExternals = true;
|
ignoreExternals = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
ocamllibs = fetchsvn {
|
ocamllibs = fetchsvn {
|
||||||
url = "http://ocamllibs.googlecode.com/svn/trunk";
|
url = "http://ocamllibs.googlecode.com/svn/trunk";
|
||||||
sha256 = "143s320xn2xalm0lnw46h1fvy48qg7my3j8cf66f0wwzv2fisr1q";
|
sha256 = "0ngcsp1qksz98r3qixj1b3l2k9qp7wgn7jxc2fpl8pvv9bc3b52f";
|
||||||
rev = 256;
|
rev = 287;
|
||||||
ignoreExternals = true;
|
ignoreExternals = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -29,6 +30,8 @@ stdenv.mkDerivation {
|
|||||||
rm std/tools/haxedoc/haxedoc std/tools/haxelib/haxelib
|
rm std/tools/haxedoc/haxedoc std/tools/haxelib/haxelib
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
buildFlags = [ "all" "tools" ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -vd "$out/bin" "$out/lib/haxe/std"
|
install -vd "$out/bin" "$out/lib/haxe/std"
|
||||||
install -vt "$out/bin" haxe haxelib haxedoc
|
install -vt "$out/bin" haxe haxelib haxedoc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user