neko: 2.0.0 -> 2.1.0
This commit is contained in:
parent
c4a85eafa4
commit
00befaff7e
@ -1,50 +1,39 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch, boehmgc, zlib, sqlite, pcre }:
|
{ stdenv, fetchurl, fetchpatch, boehmgc, zlib, sqlite, pcre, cmake, pkgconfig
|
||||||
|
, git, apacheHttpd, apr, aprutil, mariadb, mbedtls, openssl, pkgs, gtk2
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "neko-${version}";
|
name = "neko-${version}";
|
||||||
version = "2.0.0";
|
version = "2.1.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://nekovm.org/_media/neko-${version}.tar.gz";
|
url = "http://nekovm.org/media/neko-${version}-src.tar.gz";
|
||||||
sha256 = "1lcm1ahbklfpd5lnqjwmvyj2vr85jbq57hszk5jgq0x6yx6p3927";
|
sha256 = "15ng9ad0jspnhj38csli1pvsv3nxm75f0nlps7i10194jvzdb4qc";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = stdenv.lib.singleton (fetchpatch {
|
buildInputs =
|
||||||
url = "https://github.com/HaxeFoundation/neko/commit/"
|
[ boehmgc zlib sqlite pcre cmake pkgconfig git apacheHttpd apr aprutil
|
||||||
+ "ccc78c29deab7971e1369f4fe3dedd14cf9f3128.patch";
|
mariadb.client mbedtls openssl ]
|
||||||
sha256 = "1nya50rzai15hmpq2azganjxzgrfydf30glfwirgw6q8z7z3wpkq";
|
++ stdenv.lib.optionals stdenv.isDarwin [ pkgs.darwin.apple_sdk.frameworks.Security
|
||||||
});
|
pkgs.darwin.apple_sdk.frameworks.Carbon]
|
||||||
|
++ stdenv.lib.optional stdenv.isLinux gtk2;
|
||||||
|
|
||||||
prePatch = with stdenv.lib; let
|
prePatch = ''
|
||||||
libs = concatStringsSep "," (map (lib: "\"${lib.dev}/include\"") buildInputs);
|
sed -i -e '/allocated = strdup/s|"[^"]*"|"'"$out/lib/neko:$out/bin"'"|' vm/load.c
|
||||||
in ''
|
'';
|
||||||
sed -i -e '/^search_includes/,/^}/c \
|
|
||||||
search_includes = function(_) { return $array(${libs}) }
|
checkPhase = ''
|
||||||
' src/tools/install.neko
|
bin/neko bin/test.n
|
||||||
sed -i -e '/allocated = strdup/s|"[^"]*"|"'"$out/lib/neko:$out/bin"'"|' \
|
|
||||||
vm/load.c
|
|
||||||
# temporarily, fixed in 1.8.3
|
|
||||||
sed -i -e 's/^#if defined(_64BITS)/& || defined(__x86_64__)/' vm/neko.h
|
|
||||||
|
|
||||||
for disabled_mod in mod_neko{,2} mod_tora{,2} mysql ui; do
|
|
||||||
sed -i -e '/^libs/,/^}/{/^\s*'"$disabled_mod"'\s*=>/,/^\s*}/d}' \
|
|
||||||
src/tools/install.neko
|
|
||||||
done
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
makeFlags = "INSTALL_PREFIX=$(out)";
|
|
||||||
buildInputs = [ boehmgc zlib sqlite pcre ];
|
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
|
||||||
preInstall = ''
|
meta = with stdenv.lib; {
|
||||||
install -vd "$out/lib" "$out/bin"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "A high-level dynamically typed programming language";
|
description = "A high-level dynamically typed programming language";
|
||||||
homepage = http://nekovm.org;
|
homepage = http://nekovm.org;
|
||||||
license = stdenv.lib.licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
maintainers = [ maintainers.marcweber ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user