Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
raylib,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "raylib-games";
|
|
version = "2022-10-24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "raysan5";
|
|
repo = "raylib-games";
|
|
rev = "e00d77cf96ba63472e8316ae95a23c624045dcbe";
|
|
hash = "sha256-N9ip8yFUqXmNMKcvQuOyxDI4yF/w1YaoIh0prvS4Xr4=";
|
|
};
|
|
|
|
buildInputs = [ raylib ];
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
for d in *; do
|
|
if [ -d $d/src/resources ]; then
|
|
for f in $d/src/*.c $d/src/*.h; do
|
|
sed "s|\"resources/|\"$out/resources/$d/|g" -i $f
|
|
done
|
|
fi
|
|
done
|
|
runHook postConfigure
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
for d in *; do
|
|
if [ -f $d/src/Makefile ]; then
|
|
make -C $d/src
|
|
fi
|
|
done
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin $out/resources
|
|
find . -type f -executable -exec cp {} $out/bin \;
|
|
for d in *; do
|
|
if [ -d "$d/src/resources" ]; then
|
|
cp -ar "$d/src/resources" "$out/resources/$d"
|
|
fi
|
|
done
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Collection of games made with raylib";
|
|
homepage = "https://www.raylib.com/games.html";
|
|
license = licenses.zlib;
|
|
inherit (raylib.meta) platforms;
|
|
};
|
|
}
|