1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00
nixpkgs/pkgs/games/solarus/default.nix
Sebastián Mancilla 591c2d057d
Merge pull request #316573 from jcaesar/pr-7
glm: 0.9.9.8 -> 1.0.1, opensplat: 1.1.2 -> 1.1.3, fix frogatto's engine's build
2024-06-11 00:02:11 -04:00

47 lines
1.1 KiB
Nix

{ lib, mkDerivation, fetchFromGitLab, cmake, luajit
, SDL2, SDL2_image, SDL2_ttf, physfs, glm
, openal, libmodplug, libvorbis
, qtbase, qttools }:
mkDerivation rec {
pname = "solarus";
version = "1.6.4";
src = fetchFromGitLab {
owner = "solarus-games";
repo = pname;
rev = "v${version}";
sha256 = "sbdlf+R9OskDQ5U5rqUX2gF8l/fj0sDJv6BL7H1I1Ng=";
};
outputs = [ "out" "lib" "dev" ];
nativeBuildInputs = [ cmake qttools ];
buildInputs = [ luajit SDL2
SDL2_image SDL2_ttf physfs
openal libmodplug libvorbis
qtbase glm ];
cmakeFlags = [
(lib.cmakeFeature "CMAKE_CXX_FLAGS" "-DGLM_ENABLE_EXPERIMENTAL")
];
preFixup = ''
mkdir $lib/
mv $out/lib $lib
'';
meta = with lib; {
description = "Zelda-like ARPG game engine";
longDescription = ''
Solarus is a game engine for Zelda-like ARPG games written in lua.
Many full-fledged games have been writen for the engine.
'';
homepage = "https://www.solarus-games.org";
license = licenses.gpl3;
maintainers = [ ];
platforms = platforms.linux;
};
}