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,28 @@
{ lib, stdenv, pkg-config, fetchFromGitHub, opencv2, ncurses, portaudio }:
stdenv.mkDerivation {
pname = "p2pvc";
version = "unstable-2015-02-12";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ opencv2 ncurses portaudio ];
enableParallelBuilding = true;
installPhase = "mkdir -p $out/bin; cp p2pvc $out/bin/";
src = fetchFromGitHub {
owner = "mofarrell";
repo = "p2pvc";
rev = "d7b1c70288a7750fc8f9a22dbddbe51d34b5b9e5";
sha256 = "0d4vvrsjad5gk4rrjwgydn9ffj12jfb4aksw2px6jw75hp9pzmka";
};
meta = {
description = "A point to point color terminal video chat";
homepage = "https://github.com/mofarrell/p2pvc";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ trino ];
platforms = with lib.platforms; linux;
};
}