Files
nixpkgs/pkgs/development/libraries/libbap/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

51 lines
960 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 = {
homepage = "https://github.com/binaryanalysisplatform/bap-bindings";
description = "C library for interacting with BAP";
maintainers = [ lib.maintainers.maurer ];
platforms = lib.platforms.unix;
license = lib.licenses.mit;
broken = true; # Not compatible with JaneStreet libraries 0.17
};
}