103 lines
2.7 KiB
Nix
103 lines
2.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, dos2unix
|
|
, makeWrapper
|
|
, makeDesktopItem
|
|
, copyDesktopItems
|
|
, libX11
|
|
, libXi
|
|
, libGL
|
|
, curl
|
|
, openal
|
|
, liberation_ttf
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ClassiCube";
|
|
version = "1.3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "UnknownShadow200";
|
|
repo = "ClassiCube";
|
|
rev = version;
|
|
sha256 = "sha256-ZITyfxkQB4Jpm2ZsQyM+ouPLqCVmGB7UZRXDSU/BX0k=";
|
|
};
|
|
|
|
nativeBuildInputs = [ dos2unix makeWrapper copyDesktopItems ];
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = pname;
|
|
desktopName = pname;
|
|
genericName = "Sandbox Block Game";
|
|
exec = "ClassiCube";
|
|
icon = "CCicon";
|
|
comment = "Minecraft Classic inspired sandbox game";
|
|
categories = [ "Game" ];
|
|
})
|
|
];
|
|
|
|
prePatch = ''
|
|
# The ClassiCube sources have DOS-style newlines
|
|
# which causes problems with diff/patch.
|
|
dos2unix 'src/Platform_Posix.c' 'src/Core.h'
|
|
'';
|
|
|
|
patches = [
|
|
# Fix hardcoded font paths
|
|
./font-location.patch
|
|
# For some reason, the Makefile doesn't link
|
|
# with libcurl and openal when ClassiCube requires them.
|
|
./fix-linking.patch
|
|
];
|
|
|
|
font_path = "${liberation_ttf}/share/fonts/truetype";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postPatch = ''
|
|
# ClassiCube hardcodes locations of fonts.
|
|
# This changes the hardcoded location
|
|
# to the path of liberation_ttf instead
|
|
substituteInPlace src/Platform_Posix.c \
|
|
--replace '%NIXPKGS_FONT_PATH%' "${font_path}"
|
|
# ClassiCube's Makefile hardcodes JOBS=1 for some reason,
|
|
# even though it works perfectly well multi-threaded.
|
|
substituteInPlace Makefile \
|
|
--replace 'JOBS=1' "JOBS=$NIX_BUILD_CORES"
|
|
'';
|
|
|
|
buildInputs = [ libX11 libXi libGL curl openal liberation_ttf ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out/bin"
|
|
cp 'ClassiCube' "$out/bin"
|
|
# ClassiCube puts downloaded resources
|
|
# next to the location of the executable by default.
|
|
# This doesn't work with Nix
|
|
# as the location of the executable is read-only.
|
|
# We wrap the program to make it put its resources
|
|
# in ~/.local/share instead.
|
|
wrapProgram "$out/bin/ClassiCube" \
|
|
--run 'mkdir -p "$HOME/.local/share/ClassiCube"' \
|
|
--run 'cd "$HOME/.local/share/ClassiCube"'
|
|
|
|
mkdir -p "$out/share/icons/hicolor/256x256/apps"
|
|
cp misc/CCicon.png "$out/share/icons/hicolor/256x256/apps"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.classicube.net/";
|
|
description = "Lightweight, custom Minecraft Classic/ClassiCube client with optional additions written from scratch in C";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ _360ied ];
|
|
mainProgram = "ClassiCube";
|
|
};
|
|
}
|