k3s: format with nixfmt-rfc-style
[NixPkgs.git] / pkgs / games / ultimatestunts / default.nix
blob0ffe86efee4cef869b523b9490feb0387fb84762
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 = with lib.maintainers; [viric];
24     platforms = with lib.platforms; linux;
25   };