Adding radare
svn path=/nixpkgs/trunk/; revision=15226
This commit is contained in:
parent
1b3ee8bf6c
commit
233cf74781
20
pkgs/development/tools/analysis/radare/default.nix
Normal file
20
pkgs/development/tools/analysis/radare/default.nix
Normal 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+";
|
||||||
|
};
|
||||||
|
}
|
@ -2604,6 +2604,14 @@ let
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
radare = import ../development/tools/analysis/radare {
|
||||||
|
inherit stdenv fetchurl pkgconfig libusb readline gtkdialog python
|
||||||
|
ruby libewf;
|
||||||
|
inherit (gtkLibs) gtk;
|
||||||
|
inherit (gnome) vte;
|
||||||
|
lua = lua5;
|
||||||
|
};
|
||||||
|
|
||||||
ragel = import ../development/tools/parsing/ragel {
|
ragel = import ../development/tools/parsing/ragel {
|
||||||
inherit composableDerivation fetchurl transfig texLive;
|
inherit composableDerivation fetchurl transfig texLive;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user