Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: af31c4ef4c9b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 63c7ed978828
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 27, 2018

  1. hyperrogue: 10.4j -> 10.5a

    orivej committed Nov 27, 2018

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    63c7ed9 View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/games/hyperrogue/default.nix
6 changes: 4 additions & 2 deletions pkgs/games/hyperrogue/default.nix
Original file line number Diff line number Diff line change
@@ -3,19 +3,21 @@

stdenv.mkDerivation rec {
name = "hyperrogue-${version}";
version = "10.4j";
version = "10.5a";

src = fetchFromGitHub {
owner = "zenorogue";
repo = "hyperrogue";
rev = "v${version}";
sha256 = "0p0aplfr5hs5dmkgbd4rhvrdk33gss1wdb7knd2vf27n4c2avjcl";
sha256 = "1s5jm5qrbw60s8q73fzjk9g2fmapd0i7zmrna2dqx55i1gg9d597";
};

CPPFLAGS = "-I${SDL.dev}/include/SDL";

buildInputs = [ autoreconfHook SDL SDL_ttf SDL_gfx SDL_mixer libpng glew ];

enableParallelBuilding = true;

meta = with stdenv.lib; {
homepage = http://www.roguetemple.com/z/hyper/;
description = "A roguelike game set in hyperbolic geometry";