Merge pull request #134742 from DeeUnderscore/cataclysm-dda-0.F-1

This commit is contained in:
Sandro 2021-08-19 20:08:15 +02:00 committed by GitHub
commit ed2fdff713
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

@ -101,7 +101,7 @@ stdenv.mkDerivation {
'';
homepage = "https://cataclysmdda.org/";
license = licenses.cc-by-sa-30;
maintainers = with maintainers; [ mnacamura ];
maintainers = with maintainers; [ mnacamura DeeUnderscore ];
platforms = platforms.unix;
};
}

@ -10,15 +10,20 @@ let
};
self = common.overrideAttrs (common: rec {
version = "0.F";
version = "0.F-1";
src = fetchFromGitHub {
owner = "CleverRaven";
repo = "Cataclysm-DDA";
rev = version;
sha256 = "1jid8lcl04y768b3psj1ifhx96lmd6fn1j2wzxhl4ic7ra66p2z3";
sha256 = "sha256-bVIln8cLZ15qXpW5iB8Odqk0OQbNLLM8OiKybTzARA0=";
};
makeFlags = common.makeFlags ++ [
# Makefile declares version as 0.F, even under 0.F-1
"VERSION=${version}"
];
meta = common.meta // {
maintainers = with lib.maintainers;
common.meta.maintainers ++ [ skeidel ];