Adding ired, a 'radare' simplification: Interactive Raw Editor.

svn path=/nixpkgs/trunk/; revision=20511
This commit is contained in:
Lluís Batlle i Rossell 2010-03-09 18:14:59 +00:00
parent 804f4bed92
commit d2b237ba51
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "ired-0.4";
src = fetchurl {
url = "http://radare.org/get/${name}.tar.gz";
sha256 = "0wya1ylc6adqg4qw5fi8aspc5d1yr27x9r2vpy133qxzia9qv3mm";
};
installPhase = ''
make install PREFIX=$out
'';
meta = {
description = "Interactive Raw Editor";
homepage = http://radare.org/;
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all;
};
}

View File

@ -3067,6 +3067,10 @@ let
inherit fetchurl stdenv lib;
};
ired = import ../development/tools/analysis/radare/ired.nix {
inherit fetchurl stdenv;
};
jikespg = import ../development/tools/parsing/jikespg {
inherit fetchurl stdenv;
};