nixpkgs/pkgs/development/libraries/libbap/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

31 lines
840 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;
};
}