nixpkgs/pkgs/development/libraries/luaffi/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

32 lines
804 B
Nix

{ stdenv, fetchFromGitHub, lua, pkgconfig }:
stdenv.mkDerivation {
name = "luaffi-2013-11-08";
src = fetchFromGitHub {
owner = "jmckaskill";
repo = "luaffi";
rev = "abc638c9341025580099dcf77795c4b320ba0e63";
sha256 = "1hv1y9i66p473hfy36nqj220sfrxdmbd75c1gpjvpk8073vx55ac";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ lua ];
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;
};
}