Adding radare

svn path=/nixpkgs/trunk/; revision=15226
This commit is contained in:
Lluís Batlle i Rossell
2009-04-21 19:47:51 +00:00
parent 1b3ee8bf6c
commit 233cf74781
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{stdenv, fetchurl, pkgconfig, gtk, libusb, readline, lua, gtkdialog,
python, ruby, libewf, vte}:
stdenv.mkDerivation {
name = "radare-1.2.2";
src = fetchurl {
url = http://radare.org/get/radare-1.2.2.tar.gz;
sha256 = "0624ic97s1b70ijbr16b33p76mls8rziqwla6bq29l554dh2hfn4";
};
buildInputs = [pkgconfig gtk readline libusb lua gtkdialog python
ruby libewf vte];
meta = {
description = "Free advanced command line hexadecimal editor";
homepage = http://radare.org/;
license = "GPLv2+";
};
}