3
0
Fork 0
forked from mirrors/nixpkgs

luaffi: init at 2013-11-08

This commit is contained in:
Maximilian Bosch 2017-08-31 11:29:28 +02:00
parent d22c1c0719
commit f5dd3b71e8
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E
3 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, lua, pkgconfig }:
stdenv.mkDerivation {
name = "luaffi-2013-11-08";
src = fetchFromGitHub {
owner = "jmckaskill";
repo = "luaffi";
rev = "abc638c9341025580099dcf77795c4b320ba0e63";
sha256 = "1hv1y9i66p473hfy36nqj220sfrxdmbd75c1gpjvpk8073vx55ac";
};
buildInputs = [ lua pkgconfig ];
patches = [
./makefile-errors.patch
];
installPhase = ''
mkdir -p $out/lib
cp ffi.so $out/lib/ffi.so
'';
meta = with stdenv.lib; {
description = "Standalone FFI library for calling C functions from lua. Compatible with the luajit FFI interface.";
homepage = https://github.com/jmckaskill/luaffi;
maintainers = with maintainers; [ ma27 ];
license = licenses.mit;
platforms = platforms.unix;
};
}

View file

@ -0,0 +1,13 @@
diff --git a/Makefile b/Makefile
index b2b5f2c..49d4c99 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ LUA=lua
LUA_CFLAGS=`$(PKG_CONFIG) --cflags lua5.2 2>/dev/null || $(PKG_CONFIG) --cflags lua`
SOCFLAGS=-fPIC
SOCC=$(CC) -shared $(SOCFLAGS)
-CFLAGS=-fPIC -g -Wall -Werror $(LUA_CFLAGS) -fvisibility=hidden -Wno-unused-function --std=gnu99
+CFLAGS=-fPIC -g -Wall $(LUA_CFLAGS) -fvisibility=hidden -Wno-unused-function --std=gnu99
MODNAME=ffi
MODSO=$(MODNAME).so

View file

@ -9498,6 +9498,8 @@ with pkgs;
luabind_luajit = callPackage ../development/libraries/luabind { lua = luajit; };
luaffi = callPackage ../development/libraries/luaffi { lua = lua5_1; };
lzo = callPackage ../development/libraries/lzo { };
mapnik = callPackage ../development/libraries/mapnik { };