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,37 @@
{ lib
, stdenv
, fetchurl
, alsa-lib
, libopus
, libogg
, gmp
, ncurses
}:
stdenv.mkDerivation rec {
pname = "seren";
version = "0.0.21";
buildInputs = [ alsa-lib libopus libogg gmp ncurses ];
src = fetchurl {
url = "http://holdenc.altervista.org/seren/downloads/${pname}-${version}.tar.gz";
sha256 = "sha256-adI365McrJkvTexvnWjMzpHcJkLY3S/uWfE8u4yuqho=";
};
meta = with lib; {
description = "A simple ncurses VoIP program based on the Opus codec";
longDescription = ''
Seren is a simple VoIP program based on the Opus codec
that allows you to create a voice conference from the terminal, with up to 10
participants, without having to register accounts, exchange emails, or add
people to contact lists. All you need to join an existing conference is the
host name or IP address of one of the participants.
'';
homepage = "http://holdenc.altervista.org/seren/";
changelog = "http://holdenc.altervista.org/seren/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ matthewcroughan nixinator ];
platforms = platforms.linux;
};
}