mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
vvvvvv: init at 2.3.6
squash vvvvvv: init at 2.3.6
This commit is contained in:
parent
4cd69118d1
commit
2fd3e6928e
93
pkgs/games/vvvvvv/default.nix
Normal file
93
pkgs/games/vvvvvv/default.nix
Normal file
@ -0,0 +1,93 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, fetchurl
|
||||
, cmake
|
||||
, makeWrapper
|
||||
, copyDesktopItems
|
||||
, makeDesktopItem
|
||||
, physfs
|
||||
, SDL2
|
||||
, SDL2_mixer
|
||||
, tinyxml-2
|
||||
, utf8cpp
|
||||
, Foundation
|
||||
, IOKit
|
||||
, makeAndPlay ? false
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "vvvvvv";
|
||||
version = "2.3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "TerryCavanagh";
|
||||
repo = "VVVVVV";
|
||||
rev = version;
|
||||
sha256 = "sha256-sLNO4vkmlirsqJmCV9YWpyNnIiigU1KMls7rOgWgSmQ=";
|
||||
};
|
||||
sourceRoot = "source/desktop_version";
|
||||
dataZip = fetchurl {
|
||||
url = "https://thelettervsixtim.es/makeandplay/data.zip";
|
||||
name = "data.zip";
|
||||
sha256 = "sha256-x2eAlZT2Ry2p9WE252ZX44ZA1YQWSkYRIlCsYpPswOo=";
|
||||
meta.license = lib.licenses.unfree;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
makeWrapper
|
||||
copyDesktopItems
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
physfs
|
||||
SDL2
|
||||
SDL2_mixer
|
||||
tinyxml-2
|
||||
utf8cpp
|
||||
] ++ lib.optionals stdenv.isDarwin [ Foundation IOKit ];
|
||||
|
||||
# Help CMake find SDL_mixer.h
|
||||
NIX_CFLAGS_COMPILE = "-I${lib.getDev SDL2_mixer}/include/SDL2";
|
||||
|
||||
cmakeFlags = [ "-DBUNDLE_DEPENDENCIES=OFF" ] ++ lib.optional makeAndPlay "-DMAKEANDPLAY=ON";
|
||||
|
||||
desktopItems = [
|
||||
(makeDesktopItem {
|
||||
type = "Application";
|
||||
name = "VVVVVV";
|
||||
desktopName = "VVVVVV";
|
||||
comment = meta.description;
|
||||
exec = pname;
|
||||
icon = "VVVVVV";
|
||||
terminal = false;
|
||||
categories = [ "Game" ];
|
||||
})
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm755 VVVVVV $out/bin/${pname}
|
||||
install -Dm644 "$src/desktop_version/icon.ico" "$out/share/pixmaps/VVVVVV.png"
|
||||
|
||||
wrapProgram $out/bin/${pname} --add-flags "-assets ${dataZip}"
|
||||
|
||||
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";
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ martfont ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -35304,6 +35304,10 @@ with pkgs;
|
||||
libpng = libpng12;
|
||||
};
|
||||
|
||||
vvvvvv = callPackage ../games/vvvvvv {
|
||||
inherit (darwin.apple_sdk.frameworks) Foundation IOKit;
|
||||
};
|
||||
|
||||
wargus = callPackage ../games/wargus { };
|
||||
|
||||
warmux = callPackage ../games/warmux { };
|
||||
|
Loading…
Reference in New Issue
Block a user