9405df4a82
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
26 lines
741 B
Nix
26 lines
741 B
Nix
{ lib, castxml, fetchFromGitHub, buildPythonPackage,
|
|
llvmPackages }:
|
|
buildPythonPackage rec {
|
|
pname = "pygccxml";
|
|
version = "2.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gccxml";
|
|
repo = "pygccxml";
|
|
rev = "v${version}";
|
|
sha256 = "1vsxnfzz6qhiv8ac98qgk6w3s4j1jp661qy48gc9plcg2r952453";
|
|
};
|
|
|
|
buildInputs = [ castxml llvmPackages.libcxxStdenv];
|
|
|
|
# running the suite is hard, needs to generate xml_generator.cfg
|
|
# but the format doesn't accept -isystem directives
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/gccxml/pygccxml";
|
|
description = "Python package for easy C++ declarations navigation";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ teto ];
|
|
};
|
|
}
|