nixpkgs/pkgs/games/taisei/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl
2019-08-05 01:40:01 +00:00
# Build depends
2021-01-17 02:04:36 +00:00
, docutils, meson, ninja, pkg-config, python3
2019-08-05 01:40:01 +00:00
# Runtime depends
, glfw, SDL2, SDL2_mixer
2022-05-29 02:36:37 +00:00
, cglm, freetype, libpng, libwebp, libzip, zlib
2019-08-05 01:40:01 +00:00
}:
stdenv.mkDerivation rec {
pname = "taisei";
2022-05-29 02:36:37 +00:00
version = "1.3.2";
2019-08-05 01:40:01 +00:00
src = fetchurl {
url = "https://github.com/taisei-project/${pname}/releases/download/v${version}/${pname}-v${version}.tar.xz";
2022-05-29 02:36:37 +00:00
sha256 = "1g53fcyrlzmvlsb40pw90gaglysv6n1w42hk263iv61ibhdmzh6v";
2019-08-05 01:40:01 +00:00
};
nativeBuildInputs = [
2021-01-17 02:04:36 +00:00
docutils meson ninja pkg-config python3
2019-08-05 01:40:01 +00:00
];
buildInputs = [
glfw SDL2 SDL2_mixer
2022-05-29 02:36:37 +00:00
cglm freetype libpng libwebp libzip zlib
2019-08-05 01:40:01 +00:00
];
patches = [ ./0001-lto-fix.patch ];
preConfigure = ''
patchShebangs .
'';
meta = with lib; {
broken = stdenv.isDarwin;
2019-08-05 01:40:01 +00:00
description = "A free and open-source Touhou Project clone and fangame";
mainProgram = "taisei";
2019-08-05 01:40:01 +00:00
longDescription = ''
Taisei is an open clone of the Tōhō Project series. Tōhō is a one-man
project of shoot-em-up games set in an isolated world full of Japanese
folklore.
'';
2020-06-09 02:52:05 +00:00
homepage = "https://taisei-project.org/";
2019-08-05 01:40:01 +00:00
license = [ licenses.mit licenses.cc-by-40 ];
maintainers = [ maintainers.lambda-11235 ];
platforms = platforms.all;
};
}