nethack: 3.6.5 -> 3.6.6

This commit is contained in:
Maximilian Bosch 2020-03-21 22:06:24 +01:00
parent 68e9ddacc2
commit dcda17d856
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E

View file

@ -19,14 +19,14 @@ let
binPath = lib.makeBinPath [ coreutils less ];
in stdenv.mkDerivation rec {
version = "3.6.5";
version = "3.6.6";
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.5/nethack-365-src.tgz";
sha256 = "0xifs8pqfffnmkbpmrcd1xf14yakcj06nl2bbhy4dyacg8myysmv";
url = "https://nethack.org/download/${version}/nethack-${lib.replaceStrings ["."] [""] version}-src.tgz";
sha256 = "1liyckjp34j354qnxc1zn9730lh1p2dabrg1hap24z6xnqx0rpng";
};
buildInputs = [ ncurses ]