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,13 @@
diff --git a/meson.build b/meson.build
index 80aa58d..c7e9d0a 100644
--- a/meson.build
+++ b/meson.build
@@ -17,7 +17,7 @@ project('taisei', 'c',
# You may want to change these for a debug build dir
'buildtype=release',
'strip=true',
- 'b_lto=true',
+ 'b_lto=false',
'b_ndebug=if-release',
]
)

View file

@ -0,0 +1,46 @@
{ lib, stdenv, fetchurl
# Build depends
, docutils, meson, ninja, pkg-config, python3
# Runtime depends
, glfw, SDL2, SDL2_mixer
, cglm, freetype, libpng, libwebp, libzip, zlib
}:
stdenv.mkDerivation rec {
pname = "taisei";
version = "1.3.2";
src = fetchurl {
url = "https://github.com/taisei-project/${pname}/releases/download/v${version}/${pname}-v${version}.tar.xz";
sha256 = "1g53fcyrlzmvlsb40pw90gaglysv6n1w42hk263iv61ibhdmzh6v";
};
nativeBuildInputs = [
docutils meson ninja pkg-config python3
];
buildInputs = [
glfw SDL2 SDL2_mixer
cglm freetype libpng libwebp libzip zlib
];
patches = [ ./0001-lto-fix.patch ];
preConfigure = ''
patchShebangs .
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "A free and open-source Touhou Project clone and fangame";
longDescription = ''
Taisei is an open clone of the Tōhō Project series. Tōhō is a one-man
project of shoot-em-up games set in an isolated world full of Japanese
folklore.
'';
homepage = "https://taisei-project.org/";
license = [ licenses.mit licenses.cc-by-40 ];
maintainers = [ maintainers.lambda-11235 ];
platforms = platforms.all;
};
}