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,42 @@
{lib, stdenv, fetchFromGitHub, libX11, libXi, libXt, libXfixes, libXext}:
stdenv.mkDerivation rec {
version = "1.8";
pname = "xbanish";
buildInputs = [
libX11 libXi libXt libXfixes libXext
];
src = fetchFromGitHub {
owner = "jcs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-jwCoJ2shFGuJHhmXmlw/paFpMl5ARD6e5zDnDZHlsoo=";
};
makeFlags=[ "PREFIX=$(out)" ];
preInstall = ''
mkdir -p $out/bin $out/man/man1
'';
meta = {
description = "Hides mouse pointer while not in use";
longDescription = ''
xbanish hides the mouse cursor when you start typing, and shows it again when
the mouse cursor moves or a mouse button is pressed. This is similar to
xterm's pointerMode setting, but xbanish works globally in the X11 session.
unclutter's -keystroke mode is supposed to do this, but it's broken[0]. I
looked into fixing it, but the unclutter source code is terrible, so I wrote
xbanish.
The name comes from ratpoison's "banish" command that sends the cursor to the
corner of the screen.
'';
license = lib.licenses.bsd3;
maintainers = [lib.maintainers.choochootrain];
platforms = lib.platforms.linux;
};
}