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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
738 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl
2019-11-10 19:44:34 +03:00
, libGLU, libGL, SDL, freeglut, SDL_mixer, autoconf, automake, libtool
2015-07-14 12:29:02 +03:00
}:
2015-07-14 12:29:02 +03:00
stdenv.mkDerivation rec {
pname = "gl-117";
2015-07-14 12:29:02 +03: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 12:29:02 +03:00
sha256 = "1yvg1rp1yijv0b45cz085b29x5x0g5fkm654xdv5qwh2l6803gb4";
};
nativeBuildInputs = [ automake autoconf ];
buildInputs = [ libGLU libGL SDL freeglut SDL_mixer libtool ];
meta = with lib; {
description = "Air combat simulator";
mainProgram = "gl-117";
homepage = "https://sourceforge.net/projects/gl-117";
2018-08-20 21:11:06 +03:00
maintainers = with maintainers; [ raskin ];
license = licenses.gpl2;
platforms = platforms.linux;
};
2015-07-14 12:29:02 +03:00
}