about summary refs log tree commit diff
path: root/pkgs/development/libraries/libbap/default.nix
blob: a427bd99dd5874e421a24510ea191c8cdda440c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchFromGitHub, bap, ocaml, findlib, ctypes, autoreconfHook,
  which }:

stdenv.mkDerivation rec {
  name = "libbap-${version}";
  version = "master-2017-02-08";

  src = fetchFromGitHub {
    owner = "BinaryAnalysisPlatform";
    repo = "bap-bindings";
    rev = "b3da5bd5cdb3d646015ccdeb886b5ea8fd85a108";
    sha256 = "0cwfyfpxbi9bm4kkpamyd7mgsm5b6j1rh217fqb5gi05wg45rkbb";
  };

  nativeBuildInputs = [ autoreconfHook which ];
  buildInputs = [ ocaml bap findlib ctypes ];

  preInstall = ''
    mkdir -p $out/lib
    mkdir -p $out/include
  '';

  meta = {
    homepage = https://github.com/binaryanalysisplatform/bap-bindings;
    description = "A C library for interacting with BAP";
    maintainers = [ stdenv.lib.maintainers.maurer ];
    platforms = stdenv.lib.platforms.unix;
  };
}