nixpkgs-suyu/pkgs/games/trackballs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
763 B
Nix
Raw Normal View History

2021-01-15 05:31:39 +01:00
{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_ttf, gettext, zlib, SDL2_mixer, SDL2_image, guile, libGLU, libGL }:
stdenv.mkDerivation rec {
pname = "trackballs";
2022-12-27 06:57:38 +01:00
version = "1.3.4";
2017-09-22 13:37:26 +02:00
src = fetchFromGitHub {
owner = "trackballs";
repo = pname;
2017-09-22 13:37:26 +02:00
rev = "v${version}";
2022-12-27 06:57:38 +01:00
sha256 = "sha256-JKSiNe5mu8rRztUhduGFY6IsSMx6VyBqKcGO5EssI+8=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib SDL2 SDL2_ttf SDL2_mixer SDL2_image guile gettext libGLU libGL ];
2021-01-15 05:31:39 +01:00
meta = with lib; {
homepage = "https://trackballs.github.io/";
description = "3D Marble Madness clone";
mainProgram = "trackballs";
platforms = platforms.linux;
2021-01-28 06:10:33 +01:00
# Music is licensed under Ethymonics Free Music License.
license = licenses.gpl2Plus;
};
}