nixpkgs/pkgs/games/trackballs/default.nix

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

25 lines
731 B
Nix
Raw Normal View History

2021-01-15 07:31:39 +03:00
{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_ttf, gettext, zlib, SDL2_mixer, SDL2_image, guile, libGLU, libGL }:
stdenv.mkDerivation rec {
pname = "trackballs";
2021-10-28 12:36:06 +03:00
version = "1.3.3";
2017-09-22 14:37:26 +03:00
src = fetchFromGitHub {
owner = "trackballs";
repo = pname;
2017-09-22 14:37:26 +03:00
rev = "v${version}";
2021-10-28 12:36:06 +03:00
sha256 = "sha256-fCoQqGXwcpcq/gl67XXY5/wEvCM0ZZTV8LhjC+tnRuo=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib SDL2 SDL2_ttf SDL2_mixer SDL2_image guile gettext libGLU libGL ];
2021-01-15 07:31:39 +03:00
meta = with lib; {
homepage = "https://trackballs.github.io/";
description = "3D Marble Madness clone";
platforms = platforms.linux;
2021-01-28 08:10:33 +03:00
# Music is licensed under Ethymonics Free Music License.
license = licenses.gpl2Plus;
};
}