2017-01-25 07:18:06 +00:00
|
|
|
{ stdenv, fetchFromGitHub, bap, ocaml, findlib, ctypes, autoreconfHook,
|
|
|
|
which }:
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libbap";
|
2019-04-28 06:35:25 +00:00
|
|
|
version = "master-2019-04-05";
|
2017-01-25 07:18:06 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "BinaryAnalysisPlatform";
|
|
|
|
repo = "bap-bindings";
|
2019-04-28 06:35:25 +00:00
|
|
|
rev = "1a89db62f1239a15d310b400f74e151c0a64f37f";
|
|
|
|
sha256 = "0mln9adjgxzhjmjayq06ahgiay4vj5kmnzdxqz3nsik9h3npycd6";
|
2017-01-25 07:18:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook which ];
|
|
|
|
buildInputs = [ ocaml bap findlib ctypes ];
|
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
mkdir -p $out/lib
|
|
|
|
mkdir -p $out/include
|
|
|
|
'';
|
|
|
|
|
2018-10-17 18:07:05 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 21:50:51 +00:00
|
|
|
homepage = https://github.com/binaryanalysisplatform/bap-bindings;
|
2017-01-25 07:18:06 +00:00
|
|
|
description = "A C library for interacting with BAP";
|
2018-10-17 18:07:05 +00:00
|
|
|
maintainers = [ maintainers.maurer ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit;
|
2017-01-25 07:18:06 +00:00
|
|
|
};
|
|
|
|
}
|