mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
ff1a94e523
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.
26 lines
763 B
Nix
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;
|
|
};
|
|
}
|