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,26 @@
{ lib, stdenv, fetchurl, pkg-config, libxml2, gtk2 }:
stdenv.mkDerivation rec {
version = "2.1.11";
pname = "ggobi";
src = fetchurl {
url = "http://www.ggobi.org/downloads/ggobi-${version}.tar.bz2";
sha256 = "2c4ddc3ab71877ba184523e47b0637526e6f3701bd9afb6472e6dfc25646aed7";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libxml2 gtk2 ];
configureFlags = [ "--with-all-plugins" ];
hardeningDisable = [ "format" ];
meta = with lib; {
description = "Visualization program for exploring high-dimensional data";
homepage = "http://www.ggobi.org/";
license = licenses.cpl10;
platforms = platforms.linux;
maintainers = [ maintainers.michelk ];
};
}