Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / mar1d / default.nix
blob6b3fe5feb2de1be4ffe08bb3ab7d106b2b3f27cf
1 { stdenv
2 , lib
3 , SDL2
4 , SDL2_mixer
5 , libGLU
6 , libconfig
7 , meson
8 , ninja
9 , pkg-config
10 , fetchFromGitHub
13 stdenv.mkDerivation rec {
14   pname = "MAR1D";
15   version = "0.3.1";
17   src = fetchFromGitHub {
18     sha256 = "sha256-c48azBGdnzhEQGUeRJWlNLJhtrYjnpiORuWvowcQK5Y=";
19     rev = "v${version}";
20     repo = "MAR1D";
21     owner = "Radvendii";
22   };
24   nativeBuildInputs = [ meson ninja pkg-config ];
26   buildInputs = [
27     SDL2
28     SDL2_mixer
29     libconfig
30     libGLU
31   ];
33   meta = with lib; {
34     description = "First person Super Mario Bros";
35     longDescription = ''
36       The original Super Mario Bros as you've never seen it. Step into Mario's
37       shoes in this first person clone of the classic Mario game. True to the
38       original, however, the game still takes place in a two dimensional world.
39       You must view the world as mario does, as a one dimensional line.
40     '';
41     homepage = "https://mar1d.com";
42     license = licenses.agpl3;
43     maintainers = with maintainers; [ taeer ];
44     platforms = platforms.unix;
45   };