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; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c580fb6487da..c6333cc0e914 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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; };