bap-python: init at 1.1.0
This commit is contained in:
parent
7171d16fd4
commit
d022b4419c
2 changed files with 27 additions and 0 deletions
23
pkgs/development/python-modules/bap/default.nix
Normal file
23
pkgs/development/python-modules/bap/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{stdenv, buildPythonPackage, fetchFromGitHub, bap, requests}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "bap";
|
||||
version = "1.1.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "BinaryAnalysisPlatform";
|
||||
repo = "bap-python";
|
||||
rev = "v${version}";
|
||||
sha256 = "0wd46ksxscgb2dci69sbndzxs6drq5cahraqq42cdk114hkrsxs3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [bap requests];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Platform for binary analysis. It is written in OCaml, but can be used from other languages.";
|
||||
homepage = https://github.com/BinaryAnalysisPlatform/bap/;
|
||||
maintainers = [ maintainers.maurer ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
|
@ -175,6 +175,10 @@ in {
|
|||
|
||||
# packages defined elsewhere
|
||||
|
||||
bap = callPackage ../development/python-modules/bap {
|
||||
bap = pkgs.ocamlPackages_4_02.bap;
|
||||
};
|
||||
|
||||
blivet = callPackage ../development/python-modules/blivet { };
|
||||
|
||||
breathe = callPackage ../development/python-modules/breathe { };
|
||||
|
|
Loading…
Reference in a new issue