11 stdenv.mkDerivation rec {
12 pname = "abi-compliance-checker";
15 src = fetchFromGitHub {
17 repo = "abi-compliance-checker";
19 sha256 = "1f1f9j2nf9j83sfl2ljadch99v6ha8rq8xm7ax5akc05hjpyckij";
27 propagatedBuildInputs = [ abi-dumper ];
29 makeFlags = [ "prefix=$(out)" ];
32 homepage = "https://lvc.github.io/abi-compliance-checker";
33 description = "Tool for checking backward API/ABI compatibility of a C/C++ library";
34 mainProgram = "abi-compliance-checker";
35 license = licenses.lgpl21;
36 maintainers = [ maintainers.bhipple ];
37 platforms = platforms.all;