mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 18:44:13 +00:00
hyperrogue: init at 10.4j
This commit is contained in:
parent
4b649a99d8
commit
96a6e1f5b5
26
pkgs/games/hyperrogue/default.nix
Normal file
26
pkgs/games/hyperrogue/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, SDL, SDL_ttf, SDL_gfx, SDL_mixer, autoreconfHook,
|
||||||
|
libpng, glew }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "hyperrogue-${version}";
|
||||||
|
version = "10.4j";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "zenorogue";
|
||||||
|
repo = "hyperrogue";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0p0aplfr5hs5dmkgbd4rhvrdk33gss1wdb7knd2vf27n4c2avjcl";
|
||||||
|
};
|
||||||
|
|
||||||
|
CPPFLAGS = "-I${SDL.dev}/include/SDL";
|
||||||
|
|
||||||
|
buildInputs = [ autoreconfHook SDL SDL_ttf SDL_gfx SDL_mixer libpng glew ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://www.roguetemple.com/z/hyper/;
|
||||||
|
description = "A roguelike game set in hyperbolic geometry";
|
||||||
|
maintainers = with maintainers; [ rardiol ];
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -19345,6 +19345,8 @@ with pkgs;
|
|||||||
|
|
||||||
holdingnuts = callPackage ../games/holdingnuts { };
|
holdingnuts = callPackage ../games/holdingnuts { };
|
||||||
|
|
||||||
|
hyperrogue = callPackage ../games/hyperrogue { };
|
||||||
|
|
||||||
icbm3d = callPackage ../games/icbm3d { };
|
icbm3d = callPackage ../games/icbm3d { };
|
||||||
|
|
||||||
ingen = callPackage ../applications/audio/ingen {
|
ingen = callPackage ../applications/audio/ingen {
|
||||||
|
Loading…
Reference in New Issue
Block a user