Merge pull request #147955 from DeeUnderscore/cataclysm-dda-0.F-3

cataclysm-dda: 0.F-2 -> 0.F-3
This commit is contained in:
Bobby Rong 2021-12-17 15:11:52 +08:00 committed by GitHub
commit d58f7b8d77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,17 +10,17 @@ let
};
self = common.overrideAttrs (common: rec {
version = "0.F-2";
version = "0.F-3";
src = fetchFromGitHub {
owner = "CleverRaven";
repo = "Cataclysm-DDA";
rev = version;
sha256 = "sha256-8AZOrO/Wxui+LqAZo8hURktMTycecIgOONUJmE3M+vM=";
sha256 = "sha256-2su1uQaWl9WG41207dRvOTdVKcQsEz/y0uTi9JX52uI=";
};
makeFlags = common.makeFlags ++ [
# Makefile declares version as 0.F, even under 0.F-2
# Makefile declares version as 0.F, with no minor release number
"VERSION=${version}"
];