Files
nixpkgs/pkgs/by-name/cl/classicube/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

115 lines
2.8 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";
};
}