nethack: 3.6.2 -> 3.6.5

This commit is contained in:
Alexey Shmalko 2020-02-13 18:31:58 +02:00
parent cc1ae9f21b
commit 05928690e1
No known key found for this signature in database
GPG key ID: DCEF7BCCEB3066C3

View file

@ -19,14 +19,14 @@ let
binPath = lib.makeBinPath [ coreutils less ];
in stdenv.mkDerivation rec {
version = "3.6.2";
version = "3.6.5";
name = if x11Mode then "nethack-x11-${version}"
else if qtMode then "nethack-qt-${version}"
else "nethack-${version}";
src = fetchurl {
url = "https://nethack.org/download/3.6.2/nethack-362-src.tgz";
sha256 = "07fvkm3v11a4pjrq2f66vjslljsvk6raal53skn4gqsfdbd0ml7v";
url = "https://nethack.org/download/3.6.5/nethack-365-src.tgz";
sha256 = "0xifs8pqfffnmkbpmrcd1xf14yakcj06nl2bbhy4dyacg8myysmv";
};
buildInputs = [ ncurses ]