mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-07 06:12:58 +00:00
ff2026987f
Changelog: https://github.com/MCJack123/craftos2/releases/tag/v2.7.5
This commit includes a hotfix of the craftos2-rom submodule with the
version number '2.7.5.1', which fixes a critical bug (see
9881064c28
for more information.)
78 lines
1.9 KiB
Nix
78 lines
1.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, callPackage
|
|
, patchelf
|
|
, unzip
|
|
, poco
|
|
, openssl
|
|
, SDL2
|
|
, SDL2_mixer
|
|
, ncurses
|
|
, libpng
|
|
, pngpp
|
|
, libwebp
|
|
}:
|
|
|
|
let
|
|
version = "2.7.5";
|
|
craftos2-lua = fetchFromGitHub {
|
|
owner = "MCJack123";
|
|
repo = "craftos2-lua";
|
|
rev = "v${version}";
|
|
hash = "sha256-JMBsSoO/yTLw7K1Ri3BzKr5bz5UirXiPr/Q0YoMumhY=";
|
|
};
|
|
craftos2-rom = fetchFromGitHub {
|
|
owner = "McJack123";
|
|
repo = "craftos2-rom";
|
|
rev = "v${version}.1"; # Author released a hotfix; remove trailing '.1' on next update
|
|
hash = "sha256-WZs/KIdpqLLzvpH2hiJpe/AehluoQMtewBbAb4htz8k=";
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "craftos-pc";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MCJack123";
|
|
repo = "craftos2";
|
|
rev = "v${version}";
|
|
hash = "sha256-t2yhSuNPFCF2NaQFWuN9Nos5ZPinAvecV6EZNO0Cy9I=";
|
|
};
|
|
|
|
buildInputs = [ patchelf poco openssl SDL2 SDL2_mixer ncurses libpng pngpp libwebp ];
|
|
|
|
preBuild = ''
|
|
cp -R ${craftos2-lua}/* ./craftos2-lua/
|
|
chmod -R u+w ./craftos2-lua
|
|
make -C craftos2-lua linux
|
|
'';
|
|
|
|
dontStrip = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/lib $out/share/craftos $out/include
|
|
DESTDIR=$out/bin make install
|
|
cp ./craftos2-lua/src/liblua.so $out/lib
|
|
patchelf --replace-needed craftos2-lua/src/liblua.so liblua.so $out/bin/craftos
|
|
cp -R api $out/include/CraftOS-PC
|
|
cp -R ${craftos2-rom}/* $out/share/craftos
|
|
'';
|
|
|
|
passthru.tests = {
|
|
eval-hello-world = callPackage ./test-eval-hello-world { };
|
|
eval-periphemu = callPackage ./test-eval-periphemu { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "An implementation of the CraftOS-PC API written in C++ using SDL";
|
|
homepage = "https://www.craftos-pc.cc";
|
|
license = with licenses; [ mit free ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ siraben tomodachi94 ];
|
|
mainProgram = "craftos";
|
|
};
|
|
}
|