2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, bap, ocaml, findlib, ctypes, autoreconfHook,
|
2017-01-25 07:18:06 +00:00
|
|
|
which }:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libbap";
|
2021-02-22 07:57:51 +00:00
|
|
|
version = "master-2020-11-25";
|
2017-01-25 07:18:06 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "BinaryAnalysisPlatform";
|
|
|
|
repo = "bap-bindings";
|
2021-02-22 07:57:51 +00:00
|
|
|
rev = "3193cb31e1b1f2455406ea0c819dad9dfa2ba10d";
|
|
|
|
sha256 = "0m4spva3z6fgbwlg4zq53l5p227dic893q2qq65pvzxyf7k7nmil";
|
2017-01-25 07:18:06 +00:00
|
|
|
};
|
|
|
|
|
2021-03-06 20:17:28 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.in \
|
|
|
|
--replace "-linkpkg" "-thread -linkpkg"
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01: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 19:07:05 +01:00
|
|
|
maintainers = [ maintainers.maurer ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit;
|
2017-01-25 07:18:06 +00:00
|
|
|
};
|
|
|
|
}
|