mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
46 lines
1.0 KiB
Nix
46 lines
1.0 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, doxygen
|
|
, ffmpeg
|
|
, freetype
|
|
, lua
|
|
, makeWrapper
|
|
, SDL2
|
|
, SDL2_mixer
|
|
, timidity
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "corsix-th";
|
|
version = "0.67";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CorsixTH";
|
|
repo = "CorsixTH";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-WA/VJqHXzBfVUBNtxCVsGBRzSRQ0pvDvAy03ntc0KZE=";
|
|
};
|
|
|
|
luaEnv = lua.withPackages(p: with p; [ luafilesystem lpeg luasec luasocket ]);
|
|
nativeBuildInputs = [ cmake doxygen makeWrapper ];
|
|
buildInputs = [ ffmpeg freetype lua finalAttrs.luaEnv SDL2 SDL2_mixer timidity ];
|
|
cmakeFlags = [ "-Wno-dev" ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/corsix-th \
|
|
--set LUA_PATH "$LUA_PATH" \
|
|
--set LUA_CPATH "$LUA_CPATH"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A reimplementation of the 1997 Bullfrog business sim Theme Hospital";
|
|
mainProgram = "corsix-th";
|
|
homepage = "https://corsixth.com/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hughobrien ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|