colobot: 0.2.0-alpha -> 0.2.1-alpha

`colobot` 0.2.0 stopped building with GCC 13, as GCC stopped
transitively including standard header files like `cstdint` in
various scenarios. Luckily, these issues were already solved
upstream, and simply upgrading colobot to v. 0.2.1-alpha fixes
the Nixpkgs build on current GCC versions.
This commit is contained in:
Manuel Frischknecht 2024-01-26 01:49:49 +00:00
parent 5465c7e2d7
commit 051a10c4e2

View File

@ -9,13 +9,13 @@ stdenv.mkDerivation rec {
pname = "colobot";
# Maybe require an update to package colobot-data as well
# in file data.nix next to this one
version = "0.2.0-alpha";
version = "0.2.1-alpha";
src = fetchFromGitHub {
owner = "colobot";
repo = pname;
rev = "colobot-gold-${version}";
sha256 = "sha256-Nu7NyicNIk5yza9sXfd4KbGdB65guVuGREd6rwRU3lU=";
hash = "sha256-3iea2+5xCT0//NAjMHrynZKSoiOSgLTNMUQkRhXuXg8=";
};
nativeBuildInputs = [ cmake xmlstarlet doxygen python3 ];