2018-08-22 11:45:34 +01:00
|
|
|
{stdenv, fetchFromGitHub
|
2018-12-10 13:57:03 +00:00
|
|
|
, buildPackages
|
2018-08-22 11:45:34 +01:00
|
|
|
, callPackage
|
2018-12-10 13:57:03 +00:00
|
|
|
, pkgconfig
|
2018-08-22 11:45:34 +01:00
|
|
|
, libusb, readline, libewf, perl, zlib, openssl
|
2018-12-10 13:57:03 +00:00
|
|
|
, libuv, file, libzip, xxHash
|
2018-08-22 11:45:34 +01:00
|
|
|
, gtk2 ? null, vte ? null, gtkdialog ? null
|
2018-12-10 13:57:03 +00:00
|
|
|
, python3 ? null
|
2018-08-22 11:45:34 +01:00
|
|
|
, ruby ? null
|
|
|
|
, lua ? null
|
2019-02-03 15:33:25 +00:00
|
|
|
, useX11 ? false
|
|
|
|
, rubyBindings ? false
|
|
|
|
, pythonBindings ? false
|
|
|
|
, luaBindings ? false
|
2018-08-22 11:45:34 +01:00
|
|
|
}:
|
2014-09-03 20:01:39 +01:00
|
|
|
|
2018-08-22 11:45:34 +01:00
|
|
|
assert useX11 -> (gtk2 != null && vte != null && gtkdialog != null);
|
|
|
|
assert rubyBindings -> ruby != null;
|
2018-12-10 13:57:03 +00:00
|
|
|
assert pythonBindings -> python3 != null;
|
2018-08-22 11:45:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
inherit (stdenv.lib) optional;
|
|
|
|
|
|
|
|
generic = {
|
|
|
|
version_commit,
|
|
|
|
gittap,
|
|
|
|
gittip,
|
|
|
|
rev,
|
|
|
|
version,
|
|
|
|
sha256,
|
2019-02-19 14:26:11 +00:00
|
|
|
cs_ver,
|
2018-08-22 11:45:34 +01:00
|
|
|
cs_sha256
|
|
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "radare2-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "radare";
|
|
|
|
repo = "radare2";
|
|
|
|
inherit rev sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = let
|
|
|
|
capstone = fetchFromGitHub {
|
|
|
|
owner = "aquynh";
|
|
|
|
repo = "capstone";
|
|
|
|
# version from $sourceRoot/shlr/Makefile
|
2019-02-19 14:26:11 +00:00
|
|
|
rev = cs_ver;
|
2018-08-22 11:45:34 +01:00
|
|
|
sha256 = cs_sha256;
|
|
|
|
};
|
|
|
|
in ''
|
|
|
|
mkdir -p build/shlr
|
2019-02-19 14:26:11 +00:00
|
|
|
cp -r ${capstone} capstone-${cs_ver}
|
|
|
|
chmod -R +w capstone-${cs_ver}
|
|
|
|
# radare 3.3 compat for radare2-cutter
|
|
|
|
(cd shlr && ln -s ../capstone-${cs_ver} capstone)
|
|
|
|
tar -czvf shlr/capstone-${cs_ver}.tar.gz capstone-${cs_ver}
|
|
|
|
# necessary because they broke the offline-build:
|
|
|
|
# https://github.com/radare/radare2/commit/6290e4ff4cc167e1f2c28ab924e9b99783fb1b38#diff-a44d840c10f1f1feaf401917ae4ccd54R258
|
|
|
|
# https://github.com/radare/radare2/issues/13087#issuecomment-465159716
|
|
|
|
curl() { true; }
|
|
|
|
export -f curl
|
2018-08-22 11:45:34 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
install -D -m755 $src/binr/r2pm/r2pm $out/bin/r2pm
|
|
|
|
'';
|
|
|
|
|
2018-12-10 13:57:03 +00:00
|
|
|
WITHOUT_PULL="1";
|
|
|
|
makeFlags = [
|
|
|
|
"GITTAP=${gittap}"
|
|
|
|
"GITTIP=${gittip}"
|
|
|
|
"RANLIB=${stdenv.cc.bintools.bintools}/bin/${stdenv.cc.bintools.targetPrefix}ranlib"
|
|
|
|
];
|
|
|
|
configureFlags = [
|
|
|
|
"--with-sysmagic"
|
|
|
|
"--with-syszip"
|
|
|
|
"--with-sysxxhash"
|
|
|
|
"--with-openssl"
|
2018-08-22 11:45:34 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2018-12-10 13:57:03 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2018-08-22 11:45:34 +01:00
|
|
|
|
2018-12-10 13:57:03 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-01-08 20:55:44 +00:00
|
|
|
buildInputs = [ file readline libusb libewf perl zlib openssl libuv ]
|
2018-12-10 13:57:03 +00:00
|
|
|
++ optional useX11 [ gtkdialog vte gtk2 ]
|
|
|
|
++ optional rubyBindings [ ruby ]
|
|
|
|
++ optional pythonBindings [ python3 ]
|
|
|
|
++ optional luaBindings [ lua ];
|
2018-08-22 11:45:34 +01:00
|
|
|
|
2019-01-08 20:55:44 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
# radare2 exposes r_lib which depends on these libraries
|
|
|
|
file # for its list of magic numbers (`libmagic`)
|
|
|
|
libzip
|
|
|
|
xxHash
|
|
|
|
];
|
|
|
|
|
2018-08-22 11:45:34 +01:00
|
|
|
meta = {
|
|
|
|
description = "unix-like reverse engineering framework and commandline tools";
|
|
|
|
homepage = http://radare.org/;
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2018-12-10 13:57:03 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin makefu mic92 ];
|
2018-08-22 11:45:34 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
inherit version;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in {
|
2018-05-23 10:31:44 +01:00
|
|
|
#<generated>
|
|
|
|
# DO NOT EDIT! Automatically generated by ./update.py
|
2018-08-22 11:45:34 +01:00
|
|
|
radare2 = generic {
|
2019-05-13 14:41:49 +01:00
|
|
|
version_commit = "21707";
|
|
|
|
gittap = "3.5.0";
|
|
|
|
gittip = "75cfab37c6cfd0caffb9a90a949f5e60282bbd6c";
|
|
|
|
rev = "3.5.0";
|
|
|
|
version = "3.5.0";
|
|
|
|
sha256 = "03zm74a4vpip4pzj1s3gm2bdihw0iz47w8sxbhjf74074x1ylpzv";
|
2019-02-19 14:26:11 +00:00
|
|
|
cs_ver = "4.0.1";
|
|
|
|
cs_sha256 = "0ijwxxk71nr9z91yxw20zfj4bbsbrgvixps5c7cpj163xlzlwba6";
|
2014-09-03 20:01:39 +01:00
|
|
|
};
|
2018-08-22 11:45:34 +01:00
|
|
|
r2-for-cutter = generic {
|
2019-04-09 10:36:41 +01:00
|
|
|
version_commit = "21276";
|
2019-03-21 06:38:07 +00:00
|
|
|
gittap = "3.3.0";
|
|
|
|
gittip = "5a9127d2599c8ff61d8544be7d4c9384402e94a3";
|
|
|
|
rev = "5a9127d2599c8ff61d8544be7d4c9384402e94a3";
|
2019-04-09 10:36:41 +01:00
|
|
|
version = "2019-02-19";
|
2019-03-21 06:38:07 +00:00
|
|
|
sha256 = "11ap3icr8w0y49lq5dxch2h589qdmwf3qv9lsdyfsz4l0mjm49ri";
|
|
|
|
cs_ver = "4.0.1";
|
|
|
|
cs_sha256 = "0ijwxxk71nr9z91yxw20zfj4bbsbrgvixps5c7cpj163xlzlwba6";
|
2018-08-22 11:45:34 +01:00
|
|
|
};
|
2018-08-21 23:37:15 +01:00
|
|
|
#</generated>
|
2018-08-22 11:45:34 +01:00
|
|
|
}
|