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,34 @@
{ lib, stdenv, fetchurl, libresolv, perl }:
stdenv.mkDerivation rec {
version = "1.10";
pname = "dnstracer";
src = fetchurl {
url = "https://www.mavetju.org/download/${pname}-${version}.tar.bz2";
sha256 = "089bmrjnmsga2n0r4xgw4bwbf41xdqsnmabjxhw8lngg2pns1kb4";
};
outputs = [ "out" "man" ];
nativeBuildInputs = [ perl /* for pod2man */ ];
setOutputFlags = false;
installPhase = ''
install -Dm755 -t $out/bin dnstracer
install -Dm755 -t $man/share/man/man8 dnstracer.8
'';
buildInputs = [] ++ lib.optionals stdenv.isDarwin [ libresolv ];
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-lresolv";
meta = with lib; {
description = "Determines where a given Domain Name Server (DNS) gets its information from, and follows the chain of DNS servers back to the servers which know the data";
homepage = "http://www.mavetju.org/unix/general.php";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
platforms = platforms.all;
};
}