2017-11-19 08:33:53 +00:00
|
|
|
{ lib, fetchFromGitHub, buildPythonPackage, isPyPy, isPy3k, libbfd, libopcodes }:
|
2017-11-19 08:28:40 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
name = "pybfd-0.1.1";
|
|
|
|
|
|
|
|
disabled = isPyPy || isPy3k;
|
|
|
|
|
2017-11-19 08:33:53 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "orivej";
|
|
|
|
repo = "pybfd";
|
|
|
|
rev = "a2c3a7b94a3c9f7a353b863f69a79174c6a41ebe";
|
|
|
|
sha256 = "0wrz234dz25hs0ajzcz5w8lzc1yzf64wqa8fj01hhr4yy23vjkcr";
|
2017-11-19 08:28:40 +00:00
|
|
|
};
|
|
|
|
|
2017-11-19 08:33:53 +00:00
|
|
|
LIBBFD_INCLUDE_DIR = "${libbfd.dev}/include";
|
|
|
|
LIBBFD_LIBRARY = "${libbfd}/lib/libbfd.so";
|
|
|
|
LIBOPCODES_INCLUDE_DIR = "${libopcodes.dev}/include";
|
|
|
|
LIBOPCODES_LIBRARY = "${libopcodes}/lib/libopcodes.so";
|
2017-11-19 08:28:40 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/Groundworkstech/pybfd;
|
|
|
|
description = "A Python interface to the GNU Binary File Descriptor (BFD) library";
|
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
2017-11-19 08:33:53 +00:00
|
|
|
maintainers = with lib.maintainers; [ orivej ];
|
2017-11-19 08:28:40 +00:00
|
|
|
};
|
|
|
|
}
|