Fixing lua and perl for radare.

svn path=/nixpkgs/trunk/; revision=15230
This commit is contained in:
Lluís Batlle i Rossell 2009-04-21 21:31:08 +00:00
parent d2067c300f
commit 672890153e
3 changed files with 17 additions and 3 deletions

View file

@ -1,5 +1,5 @@
{stdenv, fetchurl, pkgconfig, gtk, libusb, readline, lua, gtkdialog,
python, ruby, libewf, vte}:
python, ruby, libewf, vte, perl}:
stdenv.mkDerivation {
name = "radare-1.2.2";
@ -9,8 +9,10 @@ stdenv.mkDerivation {
sha256 = "0624ic97s1b70ijbr16b33p76mls8rziqwla6bq29l554dh2hfn4";
};
patches = [ ./lua.patch ];
buildInputs = [pkgconfig gtk readline libusb lua gtkdialog python
ruby libewf vte];
ruby libewf vte perl];
meta = {
description = "Free advanced command line hexadecimal editor";

View file

@ -0,0 +1,12 @@
diff --git a/src/plug/hack/Makefile b/src/plug/hack/Makefile
index b05d8dd..d6c73f9 100644
--- a/src/plug/hack/Makefile
+++ b/src/plug/hack/Makefile
@@ -7,7 +7,6 @@ PERL_LIBS=`perl -MExtUtils::Embed -e ldopts` -lncurses
PY_CFLAGS=-I${PREFIX}/include/python2.5/ -I/usr/include/python2.5/
PY_LIBS=-lpython2.5
LUA_CFLAGS=-I${PREFIX}/include/lua5.1/ -I/usr/include/lua5.1/
-LUA_LIBS=
RUBY_CFLAGS=-I/usr/lib/ruby/1.8/i386-linux
RUBY_LIBS=-lruby18
SO=${SHARED_EXT}

View file

@ -2606,7 +2606,7 @@ let
radare = import ../development/tools/analysis/radare {
inherit stdenv fetchurl pkgconfig libusb readline gtkdialog python
ruby libewf;
ruby libewf perl;
inherit (gtkLibs) gtk;
inherit (gnome) vte;
lua = lua5;