mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Add radare2
This commit is contained in:
parent
71086542ee
commit
068d1696df
2 changed files with 48 additions and 0 deletions
39
pkgs/development/tools/analysis/radare2/default.nix
Normal file
39
pkgs/development/tools/analysis/radare2/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{stdenv, fetchurl, pkgconfig, libusb, readline, libewf, perl, zlib, openssl,
|
||||||
|
gtk ? null, vte ? null, gtkdialog ? null,
|
||||||
|
python ? null,
|
||||||
|
ruby ? null,
|
||||||
|
lua ? null,
|
||||||
|
useX11, rubyBindings, pythonBindings, luaBindings}:
|
||||||
|
|
||||||
|
assert useX11 -> (gtk != null && vte != null && gtkdialog != null);
|
||||||
|
assert rubyBindings -> ruby != null;
|
||||||
|
assert pythonBindings -> python != null;
|
||||||
|
|
||||||
|
let
|
||||||
|
optional = stdenv.lib.optional;
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "0.9.7";
|
||||||
|
name = "radare2-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://radare.org/get/${name}.tar.xz";
|
||||||
|
sha256 = "01sdsnbvx1qzyradj03sg24rk2bi9x58m40r0aqj8skv92c87s7l";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
buildInputs = [pkgconfig readline libusb libewf perl zlib openssl]
|
||||||
|
++ optional useX11 [gtkdialog vte gtk]
|
||||||
|
++ optional rubyBindings [ruby]
|
||||||
|
++ optional pythonBindings [python]
|
||||||
|
++ optional luaBindings [lua];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Free advanced command line hexadecimal editor";
|
||||||
|
homepage = http://radare.org/;
|
||||||
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||||
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
|
inherit version;
|
||||||
|
};
|
||||||
|
}
|
|
@ -4242,6 +4242,15 @@ let
|
||||||
rubyBindings = config.radare.rubyBindings or false;
|
rubyBindings = config.radare.rubyBindings or false;
|
||||||
luaBindings = config.radare.luaBindings or false;
|
luaBindings = config.radare.luaBindings or false;
|
||||||
};
|
};
|
||||||
|
radare2 = callPackage ../development/tools/analysis/radare2 {
|
||||||
|
inherit (gnome) vte;
|
||||||
|
lua = lua5;
|
||||||
|
useX11 = config.radare.useX11 or false;
|
||||||
|
pythonBindings = config.radare.pythonBindings or false;
|
||||||
|
rubyBindings = config.radare.rubyBindings or false;
|
||||||
|
luaBindings = config.radare.luaBindings or false;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
ragel = callPackage ../development/tools/parsing/ragel { };
|
ragel = callPackage ../development/tools/parsing/ragel { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue