summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/radare/ired.nix
blob: a2d135d448417bc253699fdd9d7010d798852f62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 = stdenv.lib.licenses.gpl2Plus;
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; all;
  };
}