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,25 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "frogatto-data";
version = "unstable-2022-04-13";
src = fetchFromGitHub {
owner = "frogatto";
repo = "frogatto";
rev = "655493961c4ad57ba9cccdc24d23a2ded294b5f2";
sha256 = "0irn7p61cs8nm7dxsx84b2c3wryf2h12k2kclywdhy6xmh53w8k1";
};
installPhase = ''
mkdir -p $out/share/frogatto/modules
cp -ar . $out/share/frogatto/modules/frogatto
'';
meta = with lib; {
homepage = "https://github.com/frogatto/frogatto";
description = "Data files to the frogatto game";
license = with licenses; [ cc-by-30 unfree ];
maintainers = with maintainers; [ astro ];
};
}

View file

@ -0,0 +1,43 @@
{ buildEnv, lib, callPackage, makeWrapper, makeDesktopItem }:
let
description = "Action-adventure game, starring a certain quixotic frog";
engine = callPackage ./engine.nix { };
data = callPackage ./data.nix { };
desktopItem = makeDesktopItem {
name = "frogatto";
exec = "frogatto";
startupNotify = true;
icon = "${data}/share/frogatto/modules/frogatto/images/os/frogatto-icon.png";
comment = description;
desktopName = "Frogatto";
genericName = "frogatto";
categories = [ "Game" "ArcadeGame" ];
};
version = "unstable-2020-12-04";
in buildEnv {
name = "frogatto-${version}";
buildInputs = [ makeWrapper ];
paths = [ engine data desktopItem ];
pathsToLink = [
"/bin"
"/share/frogatto/data"
"/share/frogatto/images"
"/share/frogatto/modules"
"/share/applications"
];
postBuild = ''
wrapProgram $out/bin/frogatto \
--chdir "$out/share/frogatto"
'';
meta = with lib; {
homepage = "https://frogatto.com";
description = description;
license = with licenses; [ cc-by-30 unfree ];
platforms = platforms.linux;
maintainers = with maintainers; [ astro ];
};
}

View file

@ -0,0 +1,56 @@
{ lib, stdenv, fetchFromGitHub, fetchurl, which
, boost, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf
, glew, zlib, icu, pkg-config, cairo, libvpx }:
stdenv.mkDerivation {
pname = "anura-engine";
version = "unstable-2022-04-09";
src = fetchFromGitHub {
owner = "anura-engine";
repo = "anura";
rev = "5ac7f6fe63114274f0da7dad4c1ed673651e6424";
sha256 = "1yrcbvzgxdvn893qk1qcpb53pjns366fdls5qjal7lhq71kkfc67";
fetchSubmodules = true;
};
patches = [
# https://github.com/anura-engine/anura/issues/321
(fetchurl {
url = "https://github.com/anura-engine/anura/commit/627d08fb5254b5c66d315f1706089905c2704059.patch";
sha256 = "052m58qb3lg0hnxacpnjz2sz89dk0x6b5qi2q9bkzkvg38f237rr";
})
];
nativeBuildInputs = [
which pkg-config
];
buildInputs = [
boost
SDL2
SDL2_image
SDL2_mixer
SDL2_ttf
glew
zlib
icu
cairo
libvpx
];
enableParallelBuilding = true;
installPhase = ''
mkdir -p $out/bin $out/share/frogatto
cp -ar data images modules $out/share/frogatto/
cp -a anura $out/bin/frogatto
'';
meta = with lib; {
homepage = "https://github.com/anura-engine/anura";
description = "Game engine used by Frogatto";
license = licenses.zlib;
platforms = platforms.linux;
maintainers = with maintainers; [ astro ];
};
}