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,35 @@
{ lib, stdenv, fetchFromGitLab, fetchpatch, bluez }:
stdenv.mkDerivation rec {
pname = "redfang";
version = "2.5";
src = fetchFromGitLab {
group = "kalilinux";
owner = "packages";
repo = pname;
rev = "upstream/${version}";
sha256 = "sha256-dF9QmBckyHAZ+JbLr0jTmp0eMu947unJqjrTMsJAfIE=";
};
patches = [
# make install rule
(fetchpatch {
url = "https://gitlab.com/kalilinux/packages/redfang/-/merge_requests/1.diff";
sha256 = "sha256-oxIrUAucxsBL4+u9zNNe2XXoAd088AEAHcRB/AN7B1M=";
})
];
installFlags = [ "DESTDIR=$(out)" ];
NIX_CFLAGS_COMPILE = "-Wno-format-security";
buildInputs = [ bluez ];
meta = with lib; {
description = "A small proof-of-concept application to find non discoverable bluetooth devices";
homepage = "https://gitlab.com/kalilinux/packages/redfang";
license = licenses.gpl2Only;
maintainers = with maintainers; [ fortuneteller2k ];
};
}