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,46 @@
{ lib, stdenv, fetchFromGitHub, makeWrapper
, autoreconfHook, autoconf-archive
, installShellFiles, libiconv }:
stdenv.mkDerivation rec {
pname = "libdatrie";
version = "2019-12-20";
outputs = [ "bin" "out" "lib" "dev" ];
src = fetchFromGitHub {
owner = "tlwg";
repo = "libdatrie";
rev = "d1db08ac1c76f54ba23d63665437473788c999f3";
sha256 = "03dc363259iyiidrgadzc7i03mmfdj8h78j82vk6z53w6fxq5zxc";
};
nativeBuildInputs = [
autoreconfHook
autoconf-archive
installShellFiles
];
buildInputs = lib.optional stdenv.isDarwin libiconv;
preAutoreconf = let
reports = "https://github.com/tlwg/libdatrie/issues";
in
''
sed -i -e "/AC_INIT/,+3d" configure.ac
sed -i "5iAC_INIT(${pname},${version},[${reports}])" configure.ac
'';
postInstall = ''
installManPage man/trietool.1
'';
meta = with lib; {
homepage = "https://linux.thai.net/~thep/datrie/datrie.html";
description = "This is an implementation of double-array structure for representing trie";
license = licenses.lgpl21Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}