Merge pull request #47408 from bhipple/add/abi-tools

abi-compliance-checker: init at 2.3
This commit is contained in:
Matthew Bauer
2018-10-15 15:01:48 -05:00
committed by GitHub
4 changed files with 91 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, ctags, perl, binutils, abi-dumper }:
stdenv.mkDerivation rec {
name = "abi-compliance-checker-${version}";
version = "2.3";
src = fetchFromGitHub {
owner = "lvc";
repo = "abi-compliance-checker";
rev = version;
sha256 = "1f1f9j2nf9j83sfl2ljadch99v6ha8rq8xm7ax5akc05hjpyckij";
};
buildInputs = [ binutils ctags perl ];
propagatedBuildInputs = [ abi-dumper ];
makeFlags = [ "prefix=$(out)" ];
meta = with stdenv.lib; {
homepage = https://lvc.github.io/abi-compliance-checker;
description = "A tool for checking backward API/ABI compatibility of a C/C++ library";
license = licenses.lgpl21;
maintainers = [ maintainers.bhipple ];
platforms = platforms.all;
};
}

View File

@@ -0,0 +1,33 @@
{ stdenv, fetchFromGitHub, ctags, perl, elfutils, vtable-dumper }:
stdenv.mkDerivation rec {
name = "abi-dumper-${version}";
version = "1.1";
src = fetchFromGitHub {
owner = "lvc";
repo = "abi-dumper";
rev = version;
sha256 = "1byhw132aj7a5a5zh5s3pnjlrhdk4cz6xd5irp1y08jl980qba5j";
};
patchPhase = ''
substituteInPlace abi-dumper.pl \
--replace eu-readelf ${elfutils}/bin/eu-readelf \
--replace vtable-dumper ${vtable-dumper}/bin/vtable-dumper \
--replace '"ctags"' '"${ctags}/bin/ctags"'
'';
buildInputs = [ elfutils ctags perl vtable-dumper ];
preBuild = "mkdir -p $out";
makeFlags = [ "prefix=$(out)" ];
meta = with stdenv.lib; {
homepage = https://github.com/lvc/abi-dumper;
description = "Dump ABI of an ELF object containing DWARF debug info";
license = licenses.lgpl21;
maintainers = [ maintainers.bhipple ];
platforms = platforms.all;
};
}

View File

@@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, libelf }:
stdenv.mkDerivation rec {
name = "vtable-dumper-${version}";
version = "1.2";
src = fetchFromGitHub {
owner = "lvc";
repo = "vtable-dumper";
rev = version;
sha256 = "0sl7lnjr2l4c2f7qaazvpwpzsp4gckkvccfam88wcq9f7j9xxbyp";
};
buildInputs = [ libelf ];
makeFlags = [ "prefix=$(out)" ];
meta = with stdenv.lib; {
homepage = https://github.com/lvc/vtable-dumper;
description = "A tool to list content of virtual tables in a C++ shared library";
license = licenses.lgpl21;
maintainers = [ maintainers.bhipple ];
platforms = platforms.all;
};
}