about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/trackballs/default.nix
blob: 4c7d2ba6956e2e26cd8b40aa65dca7e98570891f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_ttf, gettext, zlib, SDL2_mixer, SDL2_image, guile, libGLU, libGL }:

stdenv.mkDerivation rec {
  pname = "trackballs";
  version = "1.3.2";

  src = fetchFromGitHub {
    owner = "trackballs";
    repo = pname;
    rev = "v${version}";
    sha256 = "G+KfQgqk+iI+Beb/ZRul2ArCBcvwYQ/ftEWzdrtwb18=";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ zlib SDL2 SDL2_ttf SDL2_mixer SDL2_image guile gettext libGLU libGL ];

  meta = with lib; {
    homepage = "https://trackballs.github.io/";
    description = "3D Marble Madness clone";
    platforms = platforms.linux;
    license = licenses.gpl2;
  };
}