My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/games/trackballs/default.nix

24 lines
731 B

{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_ttf, gettext, zlib, SDL2_mixer, SDL2_image, guile, libGLU, libGL }:
stdenv.mkDerivation rec {
pname = "trackballs";
version = "1.3.3";
src = fetchFromGitHub {
owner = "trackballs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-fCoQqGXwcpcq/gl67XXY5/wEvCM0ZZTV8LhjC+tnRuo=";
};
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;
# Music is licensed under Ethymonics Free Music License.
license = licenses.gpl2Plus;
};
}