fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / ma / mar1d / package.nix
blob5494432ac91a8acc2f3dcf901db30eb8d0980a87
2   stdenv,
3   lib,
4   SDL2,
5   SDL2_mixer,
6   libGLU,
7   libconfig,
8   meson,
9   ninja,
10   pkg-config,
11   fetchFromGitHub,
12   fetchpatch,
15 stdenv.mkDerivation (finalAttrs: {
16   pname = "MAR1D";
17   version = "unstable-2023-02-02";
19   src = fetchFromGitHub {
20     hash = "sha256-kZERhwnTpBhjx6MLdf1bYCWMjtTiId/5a69kRt+/6oY=";
21     rev = "fa5dc36e1819a15539ced339ad01672e5a498c5c";
22     repo = "MAR1D";
23     owner = "Radvendii";
24   };
26   env = {
27     NIXPKGS_CFLAGS_COMPILE = toString [
28       "-Wno-error=array-parameter"
29     ];
30   };
32   nativeBuildInputs = [
33     meson
34     ninja
35     pkg-config
36   ];
38   buildInputs = [
39     SDL2
40     SDL2_mixer
41     libconfig
42     libGLU
43   ];
45   patches = [
46     # Fix the build on Darwin.
47     # https://github.com/Radvendii/MAR1D/pull/4
48     (fetchpatch {
49       url = "https://github.com/Radvendii/MAR1D/commit/baf3269e90eca69f154a43c4c1ef14677a6300fd.patch";
50       hash = "sha256-ybdLA2sO8e0J7w4roSdMWn72OkttD3y+cJ3ScuGiHCI=";
51     })
52   ];
54   meta = {
55     description = "First person Super Mario Bros";
56     mainProgram = "MAR1D";
57     longDescription = ''
58       The original Super Mario Bros as you've never seen it. Step into Mario's
59       shoes in this first person clone of the classic Mario game. True to the
60       original, however, the game still takes place in a two dimensional world.
61       You must view the world as mario does, as a one dimensional line.
62     '';
63     homepage = "https://mar1d.com";
64     license = lib.licenses.agpl3Only;
65     maintainers = with lib.maintainers; [ taeer ];
66     platforms = lib.platforms.unix;
67   };