e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl
|
|
# Build depends
|
|
, docutils, meson, ninja, pkg-config, python3
|
|
# Runtime depends
|
|
, glfw, SDL2, SDL2_mixer
|
|
, cglm, freetype, libpng, libwebp, libzip, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "taisei";
|
|
version = "1.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/taisei-project/${pname}/releases/download/v${version}/${pname}-v${version}.tar.xz";
|
|
sha256 = "1g53fcyrlzmvlsb40pw90gaglysv6n1w42hk263iv61ibhdmzh6v";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
docutils meson ninja pkg-config python3
|
|
];
|
|
|
|
buildInputs = [
|
|
glfw SDL2 SDL2_mixer
|
|
cglm freetype libpng libwebp libzip zlib
|
|
];
|
|
|
|
patches = [ ./0001-lto-fix.patch ];
|
|
|
|
preConfigure = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
description = "Free and open-source Touhou Project clone and fangame";
|
|
mainProgram = "taisei";
|
|
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.
|
|
'';
|
|
homepage = "https://taisei-project.org/";
|
|
license = [ licenses.mit licenses.cc-by-40 ];
|
|
maintainers = [ maintainers.lambda-11235 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|