mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
abi-compliance-checker: init at 2.3
This commit is contained in:
parent
cc07807b5b
commit
8d42787c61
2 changed files with 28 additions and 0 deletions
|
@ -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
|
||||
|
||||
abi-compliance-checker = callPackage ../development/tools/misc/abi-compliance-checker { };
|
||||
|
||||
abi-dumper = callPackage ../development/tools/misc/abi-dumper { };
|
||||
|
||||
activator = throw ''
|
||||
|
|
Loading…
Reference in a new issue