nixpkgs/pkgs/games/gl-117/default.nix
2018-08-20 21:15:15 +02:00

24 lines
689 B
Nix

{ stdenv, fetchurl
, libGLU_combined, SDL, freeglut, SDL_mixer, autoconf, automake, libtool
}:
stdenv.mkDerivation rec {
name = "gl-117-${version}";
version = "1.3.2";
src = fetchurl {
url = "mirror://sourceforge/project/gl-117/gl-117/GL-117%20Source/${name}.tar.bz2";
sha256 = "1yvg1rp1yijv0b45cz085b29x5x0g5fkm654xdv5qwh2l6803gb4";
};
buildInputs = [ libGLU_combined SDL freeglut SDL_mixer autoconf automake libtool ];
meta = with stdenv.lib; {
description = "An air combat simulator";
homepage = https://sourceforge.net/projects/gl-117;
maintainers = with maintainers; [ raskin ];
license = licenses.gpl2;
platforms = platforms.linux;
};
}