nixpkgs/pkgs/games/gl-117/default.nix

24 lines
691 B
Nix
Raw Normal View History

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