2022-12-12T16:16:02 cdogs-sdl 1.3.1 -> 1.4.0 https://github.com/cxong/cdogs-sdl/releases 2022-12-12T16:16:04 attrpath: cdogs-sdl 2022-12-12T16:16:04 Checking auto update branch... 2022-12-12T16:16:04 No auto update branch exists 2022-12-12T16:16:05 Old version 1.3.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , pkg-config , SDL2 , SDL2_image , SDL2_mixer , cmake , gtk3-x11 , python3 , protobuf }: stdenv.mkDerivation rec { pname = "cdogs"; version = "1.4.0"; src = fetchFromGitHub { repo = "cdogs-sdl"; owner = "cxong"; rev = version; sha256 = "sha256-jEK84iFodd0skRnHG3R0+MvBUXLd3o+YOLnBjZdsDms="; }; postPatch = '' patchShebangs src/proto/nanopb/generator/* ''; cmakeFlags = [ "-DCDOGS_DATA_DIR=${placeholder "out"}/" "-DCMAKE_C_FLAGS=-Wno-error=array-bounds" ]; nativeBuildInputs = [ pkg-config cmake (python3.withPackages (pp: with pp; [ pp.protobuf setuptools ])) ]; buildInputs = [ SDL2 SDL2_image SDL2_mixer gtk3-x11 protobuf ]; meta = with lib; { homepage = "https://cxong.github.io/cdogs-sdl"; description = "Open source classic overhead run-and-gun game"; license = licenses.gpl2Only; maintainers = with maintainers; [ nixinator ]; platforms = platforms.unix; broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/cdogs-sdl.x86_64-darwin }; }