Adding ired, a 'radare' simplification: Interactive Raw Editor.
svn path=/nixpkgs/trunk/; revision=20511
This commit is contained in:
parent
804f4bed92
commit
d2b237ba51
22
pkgs/development/tools/analysis/radare/ired.nix
Normal file
22
pkgs/development/tools/analysis/radare/ired.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user