abi-compliance-checker: init at 2.3

This commit is contained in:
Benjamin Hipple 2018-09-25 22:45:15 -04:00
parent cc07807b5b
commit 8d42787c61
2 changed files with 28 additions and 0 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

@ -7960,6 +7960,8 @@ with pkgs;
### DEVELOPMENT / TOOLS
abi-compliance-checker = callPackage ../development/tools/misc/abi-compliance-checker { };
abi-dumper = callPackage ../development/tools/misc/abi-dumper { };
activator = throw ''