evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ab / abi-compliance-checker / package.nix
blobb5ccb40d5dc4ffce049560c49e4a61244b4265db
1 { lib, stdenv, fetchFromGitHub, ctags, perl, binutils, abi-dumper }:
3 stdenv.mkDerivation rec {
4   pname = "abi-compliance-checker";
5   version = "2.3";
7   src = fetchFromGitHub {
8     owner = "lvc";
9     repo = "abi-compliance-checker";
10     rev = version;
11     sha256 = "1f1f9j2nf9j83sfl2ljadch99v6ha8rq8xm7ax5akc05hjpyckij";
12   };
14   buildInputs = [ binutils ctags perl ];
15   propagatedBuildInputs = [ abi-dumper ];
17   makeFlags = [ "prefix=$(out)" ];
19   meta = with lib; {
20     homepage = "https://lvc.github.io/abi-compliance-checker";
21     description = "Tool for checking backward API/ABI compatibility of a C/C++ library";
22     mainProgram = "abi-compliance-checker";
23     license = licenses.lgpl21;
24     maintainers = [ maintainers.bhipple ];
25     platforms = platforms.all;
26   };