biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / games / mar1d / default.nix
blob0bd6026e32d68bc320215d54d918406429603f42
1 { stdenv
2 , lib
3 , SDL2
4 , SDL2_mixer
5 , libGLU
6 , libconfig
7 , meson
8 , ninja
9 , pkg-config
10 , fetchFromGitHub
11 , fetchpatch
14 stdenv.mkDerivation rec {
15   pname = "MAR1D";
16   version = "unstable-2023-02-02";
18   src = fetchFromGitHub {
19     hash = "sha256-kZERhwnTpBhjx6MLdf1bYCWMjtTiId/5a69kRt+/6oY=";
20     rev = "fa5dc36e1819a15539ced339ad01672e5a498c5c";
21     repo = "MAR1D";
22     owner = "Radvendii";
23   };
25   nativeBuildInputs = [ meson ninja pkg-config ];
27   buildInputs = [
28     SDL2
29     SDL2_mixer
30     libconfig
31     libGLU
32   ];
34   patches = [
35     # Fix the build on Darwin.
36     # https://github.com/Radvendii/MAR1D/pull/4
37     (fetchpatch {
38       url = "https://github.com/Radvendii/MAR1D/commit/baf3269e90eca69f154a43c4c1ef14677a6300fd.patch";
39       hash = "sha256-ybdLA2sO8e0J7w4roSdMWn72OkttD3y+cJ3ScuGiHCI=";
40     })
41   ];
43   meta = with lib; {
44     description = "First person Super Mario Bros";
45     mainProgram = "MAR1D";
46     longDescription = ''
47       The original Super Mario Bros as you've never seen it. Step into Mario's
48       shoes in this first person clone of the classic Mario game. True to the
49       original, however, the game still takes place in a two dimensional world.
50       You must view the world as mario does, as a one dimensional line.
51     '';
52     homepage = "https://mar1d.com";
53     license = licenses.agpl3Only;
54     maintainers = with maintainers; [ taeer ];
55     platforms = platforms.unix;
56   };