abi-compliance-checker: init at 2.3
This commit is contained in:
parent
cc07807b5b
commit
8d42787c61
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -7960,6 +7960,8 @@ with pkgs;
|
|||||||
|
|
||||||
### DEVELOPMENT / TOOLS
|
### DEVELOPMENT / TOOLS
|
||||||
|
|
||||||
|
abi-compliance-checker = callPackage ../development/tools/misc/abi-compliance-checker { };
|
||||||
|
|
||||||
abi-dumper = callPackage ../development/tools/misc/abi-dumper { };
|
abi-dumper = callPackage ../development/tools/misc/abi-dumper { };
|
||||||
|
|
||||||
activator = throw ''
|
activator = throw ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user