2023-06-08 01:03:38 +02:00
|
|
|
{ stdenv
|
|
|
|
, cmake
|
|
|
|
, lsb-release
|
|
|
|
, ninja
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchurl
|
2024-01-21 21:35:20 +01:00
|
|
|
, copyDesktopItems
|
2023-06-08 01:03:38 +02:00
|
|
|
, makeDesktopItem
|
|
|
|
, python3
|
|
|
|
, libX11
|
|
|
|
, libXrandr
|
|
|
|
, libXinerama
|
|
|
|
, libXcursor
|
|
|
|
, libXi
|
|
|
|
, libXext
|
|
|
|
, glew
|
|
|
|
, boost
|
|
|
|
, SDL2
|
|
|
|
, SDL2_net
|
|
|
|
, pkg-config
|
|
|
|
, libpulseaudio
|
|
|
|
, libpng
|
|
|
|
, imagemagick
|
2024-01-21 21:35:20 +01:00
|
|
|
, gnome
|
|
|
|
, makeWrapper
|
2023-06-08 01:03:38 +02:00
|
|
|
}:
|
|
|
|
|
2024-01-21 21:35:20 +01:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2023-06-08 01:03:38 +02:00
|
|
|
pname = "shipwright";
|
2024-03-24 04:21:37 +01:00
|
|
|
version = "8.0.5";
|
2023-06-08 01:03:38 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "harbourmasters";
|
|
|
|
repo = "shipwright";
|
2024-01-21 21:35:20 +01:00
|
|
|
rev = finalAttrs.version;
|
2024-03-24 04:21:37 +01:00
|
|
|
hash = "sha256-o2VwOF46Iq4pwpumOau3bDXJ/CArx6NWBi00s3E4PnE=";
|
2023-06-08 01:03:38 +02:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
# This would get fetched at build time otherwise, see:
|
|
|
|
# https://github.com/HarbourMasters/Shipwright/blob/e46c60a7a1396374e23f7a1f7122ddf9efcadff7/soh/CMakeLists.txt#L736
|
|
|
|
gamecontrollerdb = fetchurl {
|
|
|
|
name = "gamecontrollerdb.txt";
|
2024-03-24 04:21:37 +01:00
|
|
|
url = "https://raw.githubusercontent.com/gabomdq/SDL_GameControllerDB/b7933e43ca2f8d26d8b668ea8ea52b736221af1e/gamecontrollerdb.txt";
|
|
|
|
hash = "sha256-XIuS9BkWkM9d+SgT1OYTfWtcmzqSUDbMrMLoVnPgidE=";
|
2023-06-08 01:03:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
lsb-release
|
|
|
|
python3
|
|
|
|
imagemagick
|
2024-01-21 21:35:20 +01:00
|
|
|
copyDesktopItems
|
|
|
|
makeWrapper
|
2023-06-08 01:03:38 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
libX11
|
|
|
|
libXrandr
|
|
|
|
libXinerama
|
|
|
|
libXcursor
|
|
|
|
libXi
|
|
|
|
libXext
|
|
|
|
glew
|
|
|
|
SDL2
|
|
|
|
SDL2_net
|
|
|
|
libpulseaudio
|
|
|
|
libpng
|
2024-01-21 21:35:20 +01:00
|
|
|
gnome.zenity
|
2023-06-08 01:03:38 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_INSTALL_PREFIX=${placeholder "out"}/lib"
|
2024-01-21 21:35:20 +01:00
|
|
|
(lib.cmakeBool "NON_PORTABLE" true)
|
2023-06-08 01:03:38 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
dontAddPrefix = true;
|
|
|
|
|
|
|
|
# Linking fails without this
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
|
|
|
postBuild = ''
|
2024-01-21 21:35:20 +01:00
|
|
|
cp ${finalAttrs.gamecontrollerdb} ${finalAttrs.gamecontrollerdb.name}
|
2023-06-08 01:03:38 +02:00
|
|
|
pushd ../OTRExporter
|
2024-01-21 21:35:20 +01:00
|
|
|
python3 ./extract_assets.py -z ../build/ZAPD/ZAPD.out --norom --xml-root ../soh/assets/xml --custom-assets-path ../soh/assets/custom --custom-otr-file soh.otr --port-ver ${finalAttrs.version}
|
2023-06-08 01:03:38 +02:00
|
|
|
popd
|
|
|
|
'';
|
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
# Cmake likes it here for its install paths
|
|
|
|
cp ../OTRExporter/soh.otr ..
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
ln -s $out/lib/soh.elf $out/bin/soh
|
2024-01-21 21:35:20 +01:00
|
|
|
install -Dm644 ../soh/macosx/sohIcon.png $out/share/pixmaps/soh.png
|
|
|
|
'';
|
|
|
|
|
|
|
|
fixupPhase = ''
|
|
|
|
wrapProgram $out/lib/soh.elf --prefix PATH ":" ${lib.makeBinPath [ gnome.zenity ]}
|
2023-06-08 01:03:38 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
desktopItems = [
|
|
|
|
(makeDesktopItem {
|
|
|
|
name = "soh";
|
|
|
|
icon = "soh";
|
|
|
|
exec = "soh";
|
2024-01-21 21:35:20 +01:00
|
|
|
comment = finalAttrs.meta.description;
|
2023-06-08 01:03:38 +02:00
|
|
|
genericName = "Ship of Harkinian";
|
|
|
|
desktopName = "soh";
|
|
|
|
categories = [ "Game" ];
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2024-01-21 21:35:20 +01:00
|
|
|
meta = {
|
2023-06-08 01:03:38 +02:00
|
|
|
homepage = "https://github.com/HarbourMasters/Shipwright";
|
|
|
|
description = "A PC port of Ocarina of Time with modern controls, widescreen, high-resolution, and more";
|
|
|
|
mainProgram = "soh";
|
|
|
|
platforms = [ "x86_64-linux" ];
|
2024-01-21 21:35:20 +01:00
|
|
|
maintainers = with lib.maintainers; [ ivar j0lol ];
|
|
|
|
license = with lib.licenses; [
|
2023-06-08 01:03:38 +02:00
|
|
|
# OTRExporter, OTRGui, ZAPDTR, libultraship
|
|
|
|
mit
|
|
|
|
# Ship of Harkinian itself
|
|
|
|
unfree
|
|
|
|
];
|
|
|
|
};
|
2024-01-21 21:35:20 +01:00
|
|
|
})
|