pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / ultimatestunts / default.nix
blob66906e5d50f34cabef7d326e355802c66f4d7f58
1 {lib, stdenv, fetchurl, SDL, libGLU, libGL, SDL_image, freealut, openal, libvorbis,
2 pkg-config}:
4 stdenv.mkDerivation rec {
5   pname = "ultimate-stunts";
6   version = "0.7.7.1";
7   src = fetchurl {
8     url = "mirror://sourceforge/ultimatestunts/ultimatestunts-srcdata-${lib.replaceStrings ["."] [""] version}.tar.gz";
9     sha256 = "sha256-/MBuSi/yxcG9k3ZwrNsHkUDzzg798AV462VZog67JtM=";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ SDL libGLU libGL SDL_image freealut openal libvorbis ];
15   postPatch = ''
16     sed -e '1i#include <unistd.h>' -i $(find . -name '*.c' -o -name '*.cpp')
17   '';
19   meta = {
20     homepage = "http://www.ultimatestunts.nl/";
21     description = "Remake of the popular racing DOS-game Stunts";
22     license = lib.licenses.gpl2Plus;
23     maintainers = [ ];
24     platforms = with lib.platforms; linux;
25   };