Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
958 B
Nix
51 lines
958 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
bap,
|
|
ocaml,
|
|
findlib,
|
|
ctypes,
|
|
ctypes-foreign,
|
|
autoreconfHook,
|
|
which,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "libbap";
|
|
version = "master-2022-07-13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BinaryAnalysisPlatform";
|
|
repo = "bap-bindings";
|
|
rev = "4d324dd794f8e022e8eddecbb2ae2e7b28173947";
|
|
hash = "sha256-la47HR+i99ueDEWR91YIXGdKflpE1E0qmmJjeowmGSI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
which
|
|
ocaml
|
|
findlib
|
|
];
|
|
buildInputs = [
|
|
bap
|
|
ctypes
|
|
ctypes-foreign
|
|
];
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/lib
|
|
mkdir -p $out/include
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/binaryanalysisplatform/bap-bindings";
|
|
description = "C library for interacting with BAP";
|
|
maintainers = [ maintainers.maurer ];
|
|
platforms = platforms.unix;
|
|
license = licenses.mit;
|
|
broken = true; # Not compatible with JaneStreet libraries 0.17
|
|
};
|
|
}
|