mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
25 lines
601 B
Nix
25 lines
601 B
Nix
{ stdenv, fetchurl
|
|
, mesa, 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 = [ mesa SDL freeglut SDL_mixer autoconf automake libtool ];
|
|
|
|
meta = {
|
|
description = "An air combat simulator";
|
|
maintainers = with stdenv.lib.maintainers;
|
|
[
|
|
raskin
|
|
];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|