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,57 @@
{ stdenv, lib, fetchFromGitHub
, parted, systemd ? null
}:
stdenv.mkDerivation rec {
pname = "f3";
version = "8.0";
src = fetchFromGitHub {
owner = "AltraMayor";
repo = pname;
rev = "v${version}";
sha256 = "17l5vspfcgfbkqg7bakp3gql29yb05gzawm8n3im30ilzdr53678";
};
postPatch = ''
sed -i 's/-oroot -groot//' Makefile
for f in f3write.h2w log-f3wr; do
substituteInPlace $f \
--replace '$(dirname $0)' $out/bin
done
'';
buildInputs = [
parted
]
++ lib.optional stdenv.isLinux systemd;
enableParallelBuilding = true;
buildFlags = [
"all" # f3read, f3write
]
++ lib.optional stdenv.isLinux "extra"; # f3brew, f3fix, f3probe
installFlags = [
"PREFIX=${placeholder "out"}"
];
installTargets = [
"install"
]
++ lib.optional stdenv.isLinux "install-extra";
postInstall = ''
install -Dm555 -t $out/bin f3write.h2w log-f3wr
install -Dm444 -t $out/share/doc/${pname} LICENSE README.rst
'';
meta = with lib; {
description = "Fight Flash Fraud";
homepage = "http://oss.digirati.com.br/f3/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ makefu ];
};
}