about summary refs log tree commit diff
path: root/pkgs/games/gl-117
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/gl-117')
-rw-r--r--pkgs/games/gl-117/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/games/gl-117/default.nix b/pkgs/games/gl-117/default.nix
deleted file mode 100644
index 9e56ec4cfccd..000000000000
--- a/pkgs/games/gl-117/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ lib, stdenv, fetchurl
-, libGLU, libGL, SDL, freeglut, SDL_mixer, autoconf, automake, libtool
-}:
-
-stdenv.mkDerivation rec {
-  pname = "gl-117";
-  version = "1.3.2";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/project/gl-117/gl-117/GL-117%20Source/${pname}-${version}.tar.bz2";
-    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";
-    maintainers = with maintainers; [ raskin ];
-    license = licenses.gpl2;
-    platforms = platforms.linux;
-  };
-}