mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
71 lines
1.6 KiB
Nix
71 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, patchelf
|
|
, unzip
|
|
, poco
|
|
, openssl
|
|
, SDL2
|
|
, SDL2_mixer
|
|
, ncurses
|
|
, libpng
|
|
, pngpp
|
|
, libwebp
|
|
}:
|
|
|
|
let
|
|
version = "2.7.3";
|
|
craftos2-lua = fetchFromGitHub {
|
|
owner = "MCJack123";
|
|
repo = "craftos2-lua";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-lMqYfSA3sI7+glRE+eUf03uLfbf7lipmoqgt74FUaJQ=";
|
|
};
|
|
craftos2-rom = fetchFromGitHub {
|
|
owner = "McJack123";
|
|
repo = "craftos2-rom";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-t76Yltx7vHNoAAFvNpYLKuwFja4On6M20upmG6w3C1M=";
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "craftos-pc";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MCJack123";
|
|
repo = "craftos2";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-a7oMLfjZUkEWPjxDDywlSW4qLhcQrCXPPY2BEOgiafU=";
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
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";
|
|
};
|
|
}
|