nixpkgs/pkgs/by-name/vv/vvvvvv/package.nix
Artturin e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
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"
```
2024-09-25 00:04:37 +03:00

100 lines
2.4 KiB
Nix

{ stdenv
, lib
, fetchFromGitHub
, fetchurl
, cmake
, makeWrapper
, copyDesktopItems
, makeDesktopItem
, faudio
, physfs
, SDL2
, tinyxml-2
, Foundation
, IOKit
, makeAndPlay ? false
}:
stdenv.mkDerivation rec {
pname = "vvvvvv";
version = "2.4.1";
src = fetchFromGitHub {
owner = "TerryCavanagh";
repo = "VVVVVV";
rev = version;
hash = "sha256-HosrYBzx1Kh7rQIH7IAoOTPgpm4lgYOVR3MWtWX3usQ=";
fetchSubmodules = true;
};
dataZip = fetchurl {
url = "https://thelettervsixtim.es/makeandplay/data.zip";
name = "data.zip";
hash = "sha256-x2eAlZT2Ry2p9WE252ZX44ZA1YQWSkYRIlCsYpPswOo=";
meta.license = lib.licenses.unfree;
};
nativeBuildInputs = [
cmake
makeWrapper
copyDesktopItems
];
buildInputs = [
faudio
physfs
SDL2
tinyxml-2
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Foundation IOKit ];
cmakeDir = "../desktop_version";
cmakeFlags = [
"-DBUNDLE_DEPENDENCIES=OFF"
] ++ lib.optional makeAndPlay "-DMAKEANDPLAY=ON";
desktopItems = [
(makeDesktopItem {
type = "Application";
name = "VVVVVV";
desktopName = "VVVVVV";
comment = meta.description;
exec = "vvvvvv";
icon = "VVVVVV";
terminal = false;
categories = [ "Game" ];
})
];
installPhase = ''
runHook preInstall
install -Dm755 VVVVVV $out/bin/vvvvvv
install -Dm644 "$src/desktop_version/icon.ico" "$out/share/pixmaps/VVVVVV.png"
cp -r "$src/desktop_version/fonts/" "$out/share/"
cp -r "$src/desktop_version/lang/" "$out/share/"
wrapProgram $out/bin/vvvvvv \
--add-flags "-assets ${dataZip}" \
--add-flags "-langdir $out/share/lang" \
--add-flags "-fontsdir $out/share/fonts"
runHook postInstall
'';
meta = with lib; {
description = "A retro-styled platform game" + lib.optionalString makeAndPlay " (redistributable, without original levels)";
longDescription = ''
VVVVVV is a platform game all about exploring one simple mechanical
idea - what if you reversed gravity instead of jumping?
'' + lib.optionalString makeAndPlay ''
(Redistributable version, doesn't include the original levels.)
'';
homepage = "https://thelettervsixtim.es";
changelog = "https://github.com/TerryCavanagh/VVVVVV/releases/tag/${src.rev}";
license = licenses.unfree;
maintainers = [ ];
platforms = platforms.unix;
};
}