uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, stdenv, fetchFromGitHub, ctags, perl, binutils, abi-dumper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "abi-compliance-checker";
|
||||
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 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue