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,30 @@
{ lib, stdenv, fetchurl, pam }:
stdenv.mkDerivation rec {
pname = "vlock";
version = "2.2.2";
src = fetchurl {
url = "mirror://debian/pool/main/v/vlock/vlock_${version}.orig.tar.gz";
sha256 = "1b9gv7hmlb8swda5bn40lp1yki8b8wv29vdnhcjqfl6ir98551za";
};
prePatch = ''
sed -i -e '/INSTALL/ {
s/-[og] [^ ]*//g; s/4711/755/
}' Makefile modules/Makefile
'';
patches = [ ./eintr.patch ];
configureFlags = [ "VLOCK_GROUP=root" "ROOT_GROUP=root" ];
buildInputs = [ pam ];
meta = with lib; {
description = "Virtual console locking program";
license = licenses.gpl2;
maintainers = [ ];
platforms = platforms.linux;
};
}