nixpkgs/pkgs/games/trackballs/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

26 lines
763 B
Nix

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