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:
Anton Arapov 2021-04-03 12:58:10 +02:00 committed by Alan Daniels
commit 56de2bcd43
30691 changed files with 3076956 additions and 0 deletions

View file

@ -0,0 +1,45 @@
{ stdenv
, lib
, fetchFromGitHub
, autoconf
, automake
, libtool
, zlib
, cunit
}:
stdenv.mkDerivation rec {
pname = "dcap";
version = "2.47.12";
src = fetchFromGitHub {
owner = "dCache";
repo = "dcap";
rev = version;
sha256 = "sha256-pNLEN1YLQGMJNuv8n6bec3qONbwNOYbYDDvkwuP5AR4=";
};
nativeBuildInputs = [ autoconf automake libtool ];
buildInputs = [ zlib ];
preConfigure = ''
patchShebangs bootstrap.sh
./bootstrap.sh
'';
doCheck = true;
checkInputs = [ cunit ];
outputs = [ "bin" "dev" "out" "man" "doc" ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "dCache access protocol client library";
homepage = "https://github.com/dCache/dcap";
changelog = "https://github.com/dCache/dcap/blob/master/ChangeLog";
license = licenses.lgpl2Only;
platforms = platforms.all;
mainProgram = "dccp";
maintainers = with maintainers; [ ShamrockLee ];
};
}