1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/games/trackballs/default.nix

24 lines
623 B
Nix
Raw Normal View History

2017-09-22 12:37:26 +01:00
{ stdenv, fetchFromGitHub, cmake, SDL2, SDL2_ttf, gettext, zlib, SDL2_mixer, SDL2_image, guile, mesa }:
with stdenv.lib;
stdenv.mkDerivation rec {
2017-09-22 12:37:26 +01:00
name = "trackballs-${version}";
2017-11-13 23:43:58 +00:00
version = "1.2.4";
2017-09-22 12:37:26 +01:00
src = fetchFromGitHub {
owner = "trackballs";
repo = "trackballs";
rev = "v${version}";
2017-11-13 23:43:58 +00:00
sha256 = "0y5y8xzfsjd0rxl5wnxdq7m9n97s5xvcqyjsckz4qxrjcc3lk297";
};
2017-09-22 12:37:26 +01:00
buildInputs = [ cmake zlib SDL2 SDL2_ttf SDL2_mixer SDL2_image guile gettext mesa ];
meta = {
2017-09-22 12:37:26 +01:00
homepage = https://trackballs.github.io/;
description = "3D Marble Madness clone";
platforms = stdenv.lib.platforms.linux;
};
}