nixpkgs/pkgs/development/libraries/libbap/default.nix

31 lines
814 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, bap, ocaml, findlib, ctypes, autoreconfHook,
2017-01-25 07:18:06 +00:00
which }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "libbap";
version = "master-2020-11-25";
2017-01-25 07:18:06 +00:00
src = fetchFromGitHub {
owner = "BinaryAnalysisPlatform";
repo = "bap-bindings";
rev = "3193cb31e1b1f2455406ea0c819dad9dfa2ba10d";
sha256 = "0m4spva3z6fgbwlg4zq53l5p227dic893q2qq65pvzxyf7k7nmil";
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
'';
meta = with lib; {
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
};
}