Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
798 B
Nix
46 lines
798 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
libGLU,
|
|
libGL,
|
|
SDL,
|
|
libglut,
|
|
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
|
|
libglut
|
|
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.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|