nixpkgs/pkgs/by-name/co/corsix-th/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

76 lines
1.7 KiB
Nix

{ stdenv
, lib
, fetchFromGitHub
, cmake
, curl
, doxygen
, ffmpeg
, freetype
, lua
, makeWrapper
, SDL2
, SDL2_mixer
, timidity
# Darwin dependencies
, libiconv
, apple-sdk_11
# Update
, nix-update-script
}:
stdenv.mkDerivation(finalAttrs: {
pname = "corsix-th";
version = "0.68.0";
src = fetchFromGitHub {
owner = "CorsixTH";
repo = "CorsixTH";
rev = "v${finalAttrs.version}";
hash = "sha256-D8ks+fiFJxwClqW1aNtGGa5UxAFvuH2f2guwPxOEQwI=";
};
patches = [
./darwin-cmake-no-fixup-bundle.patch
];
nativeBuildInputs = [ cmake doxygen makeWrapper ];
buildInputs = let
luaEnv = lua.withPackages(p: with p; [ luafilesystem lpeg luasec luasocket ]);
in [
curl
ffmpeg
freetype
lua
luaEnv
SDL2
SDL2_mixer
timidity
] ++ lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11;
cmakeFlags = [ "-Wno-dev" ];
postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
wrapProgram $out/bin/corsix-th \
--set LUA_PATH "$LUA_PATH" \
--set LUA_CPATH "$LUA_CPATH"
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
mkdir -p $out/Applications
mv $out/CorsixTH.app $out/Applications
wrapProgram $out/Applications/CorsixTH.app/Contents/MacOS/CorsixTH \
--set LUA_PATH "$LUA_PATH" \
--set LUA_CPATH "$LUA_CPATH"
'';
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Reimplementation of the 1997 Bullfrog business sim Theme Hospital";
mainProgram = "corsix-th";
homepage = "https://corsixth.com/";
license = licenses.mit;
maintainers = with maintainers; [ hughobrien matteopacini ];
platforms = platforms.linux ++ platforms.darwin;
};
})