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,54 @@
{ lib
, autoPatchelfHook
, fetchFromGitHub
, python3Packages
, wget
, zlib
}:
python3Packages.buildPythonApplication rec {
pname = "eggnog-mapper";
version = "2.1.7";
src = fetchFromGitHub {
owner = "eggnogdb";
repo = pname;
rev = version;
hash = "sha256-auVD/r8m3TAB1KYMQ7Sae23eDg6LRx/daae0505cjwU=";
};
postPatch = ''
# Not a great solution...
substituteInPlace setup.cfg \
--replace "==" ">="
'';
nativeBuildInputs = [
autoPatchelfHook
];
buildInputs = [
zlib
];
propagatedBuildInputs = [
wget
] ++ (with python3Packages; [
biopython
psutil
XlsxWriter
]);
# Tests rely on some of the databases being available, which is not bundled
# with this package as (1) in total, they represent >100GB of data, and (2)
# the user can download only those that interest them.
doCheck = false;
meta = with lib; {
description = "Fast genome-wide functional annotation through orthology assignment";
license = licenses.gpl2;
homepage = "https://github.com/eggnogdb/eggnog-mapper/wiki";
maintainers = with maintainers; [ luispedro ];
platforms = platforms.all;
};
}