Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hyperrogue: 10.5e -> 11.2d #76756

Merged
merged 1 commit into from Jan 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkgs/games/hyperrogue/default.nix
Expand Up @@ -3,13 +3,13 @@

stdenv.mkDerivation rec {
pname = "hyperrogue";
version = "10.5e";
version = "11.2d";

src = fetchFromGitHub {
owner = "zenorogue";
repo = "hyperrogue";
rev = "v${version}";
sha256 = "1sjr26if3xv8xv52app1hkxs0bbgbviagydm4mdwbxjpd6v3d1aa";
rev = stdenv.lib.strings.stringAsChars (x: if x == "." then "" else x) "v${version}";
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added this because the URL previously ended in v10.5e but now ends in v112d so I had to delete the dot.

sha256 = "0aj4xy5xjdj32l5mk8796ldh9d7h8rx35kgc1vr7acb4fhpppb0f";
};

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