opengothic: init at 0.80-unstable-09-10-2024

This commit is contained in:
azahi 2024-10-25 16:55:37 +03:00
parent 7eabf557d4
commit 6ab0d053bf
No known key found for this signature in database
GPG Key ID: C8C6BDDB3847F72B

View File

@ -0,0 +1,64 @@
{
alsa-lib,
cmake,
fetchFromGitHub,
glslang,
lib,
libX11,
libXcursor,
libglvnd,
makeWrapper,
ninja,
stdenv,
vulkan-headers,
vulkan-loader,
vulkan-validation-layers,
}:
stdenv.mkDerivation {
pname = "opengothic";
version = "0.80-unstable-09-10-2024";
src = fetchFromGitHub {
owner = "Try";
repo = "OpenGothic";
rev = "0db60b0a956e2a2f365aa3a8bdbe366be198e641";
fetchSubmodules = true;
hash = "sha256-Hf3B7B4CaW/GsTcYs0PChpPfA9aK41pPJkImtUDgoKc=";
};
outputs = [
"dev"
"out"
];
nativeBuildInputs = [
cmake
glslang
makeWrapper
ninja
];
buildInputs = [
alsa-lib
libX11
libXcursor
libglvnd
vulkan-headers
vulkan-loader
vulkan-validation-layers
];
postFixup = ''
wrapProgram $out/bin/Gothic2Notr \
--set LD_PRELOAD "${lib.getLib alsa-lib}/lib/libasound.so.2"
'';
meta = {
description = "Open source re-implementation of Gothic 2: Night of the Raven";
homepage = "https://github.com/Try/OpenGothic";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ azahi ];
platforms = lib.platforms.linux;
mainProgram = "Gothic2Notr";
};
}