summary refs log tree commit diff
path: root/pkgs/development/tools/analysis
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-03-09 18:14:59 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-03-09 18:14:59 +0000
commitd2b237ba51821e376920a3959e06e285aad978fe (patch)
tree6d9aeed4805f536875aacd1ed767b4aa57b333d9 /pkgs/development/tools/analysis
parent804f4bed929ec097439a59c35af264070d1d3034 (diff)
downloadnixlib-d2b237ba51821e376920a3959e06e285aad978fe.tar
nixlib-d2b237ba51821e376920a3959e06e285aad978fe.tar.gz
nixlib-d2b237ba51821e376920a3959e06e285aad978fe.tar.bz2
nixlib-d2b237ba51821e376920a3959e06e285aad978fe.tar.lz
nixlib-d2b237ba51821e376920a3959e06e285aad978fe.tar.xz
nixlib-d2b237ba51821e376920a3959e06e285aad978fe.tar.zst
nixlib-d2b237ba51821e376920a3959e06e285aad978fe.zip
Adding ired, a 'radare' simplification: Interactive Raw Editor.
svn path=/nixpkgs/trunk/; revision=20511
Diffstat (limited to 'pkgs/development/tools/analysis')
-rw-r--r--pkgs/development/tools/analysis/radare/ired.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/tools/analysis/radare/ired.nix b/pkgs/development/tools/analysis/radare/ired.nix
new file mode 100644
index 000000000000..f7fb810410dc
--- /dev/null
+++ b/pkgs/development/tools/analysis/radare/ired.nix
@@ -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;
+  };
+}