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: b4d68d88c667
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1d2f6c7d2541
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 2, 2020

  1. hyperrogue: 11.2d -> 11.3f

    mehlon authored Apr 2, 2020
    Copy the full SHA
    1d2f6c7 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/games/hyperrogue/default.nix
6 changes: 3 additions & 3 deletions pkgs/games/hyperrogue/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

stdenv.mkDerivation rec {
pname = "hyperrogue";
version = "11.2d";
version = "11.3f";

src = fetchFromGitHub {
owner = "zenorogue";
repo = "hyperrogue";
rev = stdenv.lib.strings.stringAsChars (x: if x == "." then "" else x) "v${version}";
sha256 = "0aj4xy5xjdj32l5mk8796ldh9d7h8rx35kgc1vr7acb4fhpppb0f";
rev = "v${version}";
sha256 = "0i6dksxx33xga4pq41qsfllqras1hzk14ffqhnk11aj5lrfg98rm";
};

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