nixpkgs/pkgs/development/tools/analysis/radare2/default.nix

83 lines
2.3 KiB
Nix
Raw Normal View History

2018-05-23 11:31:44 +02:00
{stdenv, fetchFromGitHub
, ninja, meson , pkgconfig
, libusb, readline, libewf, perl, zlib, openssl
, gtk2 ? null, vte ? null, gtkdialog ? null
, python ? null
, ruby ? null
, lua ? null
, useX11, rubyBindings, pythonBindings, luaBindings
}:
2014-09-03 21:01:39 +02:00
assert useX11 -> (gtk2 != null && vte != null && gtkdialog != null);
2014-09-03 21:01:39 +02:00
assert rubyBindings -> ruby != null;
assert pythonBindings -> python != null;
2018-05-23 11:31:44 +02:00
2016-05-06 16:30:50 +02:00
let
2017-08-18 03:53:24 +02:00
inherit (stdenv.lib) optional;
2018-05-23 11:31:44 +02:00
#<generated>
# DO NOT EDIT! Automatically generated by ./update.py
2018-08-08 02:09:14 +02:00
version_commit = "19004";
gittap = "2.8.0";
gittip = "a76b965410aba07b4ef8b96d90b25b271c2003dd";
version = "2.8.0";
sha256 = "1d9rkzc3vychy2h1bnywwx4why83rr18r0lvvl1cqx87ad5awcjk";
cs_tip = "782ea67e17a391ca0d3faafdc365b335a1a8930a";
cs_sha256 = "1maww4ir78a193pm3f8lr2kdkizi7rywn68ffa65ipyr7j4pl6i4";
2018-05-23 11:31:44 +02:00
#</generated>
2014-09-03 21:01:39 +02:00
in
stdenv.mkDerivation rec {
name = "radare2-${version}";
2017-08-18 03:53:24 +02:00
src = fetchFromGitHub {
owner = "radare";
repo = "radare2";
rev = version;
2018-05-23 11:31:44 +02:00
inherit sha256;
2014-09-03 21:01:39 +02:00
};
2017-08-18 03:53:24 +02:00
postPatch = let
capstone = fetchFromGitHub {
owner = "aquynh";
repo = "capstone";
2018-05-23 11:31:44 +02:00
# version from $sourceRoot/shlr/Makefile
rev = cs_tip;
2018-05-23 11:31:44 +02:00
sha256 = cs_sha256;
2017-08-18 03:53:24 +02:00
};
in ''
if ! grep -F "CS_TIP=${cs_tip}" shlr/Makefile; then echo "CS_TIP mismatch"; exit 1; fi
2018-08-08 02:09:14 +02:00
# When using meson, it expects capstone source relative to build directory
mkdir -p build/shlr
ln -s ${capstone} build/shlr/capstone
2017-08-18 03:53:24 +02:00
'';
2014-09-03 21:01:39 +02:00
2018-05-23 11:31:44 +02:00
postInstall = ''
ln -s $out/bin/radare2 $out/bin/r2
install -D -m755 $src/binr/r2pm/r2pm $out/bin/r2pm
'';
mesonFlags = [
"-Dr2_version_commit=${version_commit}"
"-Dr2_gittap=${gittap}"
"-Dr2_gittip=${gittip}"
];
2017-12-30 01:55:20 +01:00
enableParallelBuilding = true;
2018-05-23 11:31:44 +02:00
nativeBuildInputs = [ pkgconfig ninja meson ];
buildInputs = [ readline libusb libewf perl zlib openssl]
++ optional useX11 [gtkdialog vte gtk2]
2014-09-03 21:01:39 +02:00
++ optional rubyBindings [ruby]
++ optional pythonBindings [python]
++ optional luaBindings [lua];
meta = {
2017-03-13 17:53:12 +01:00
description = "unix-like reverse engineering framework and commandline tools";
2014-09-03 21:01:39 +02:00
homepage = http://radare.org/;
license = stdenv.lib.licenses.gpl2Plus;
2018-05-23 11:22:49 +02:00
maintainers = with stdenv.lib.maintainers; [raskin makefu mic92];
2014-09-03 21:01:39 +02:00
platforms = with stdenv.lib.platforms; linux;
inherit version;
};
}