sdl-jstest: disable SDL1 build (#457636)

This commit is contained in:
Grimmauld
2025-11-01 21:30:57 +00:00
committed by GitHub

View File

@@ -4,7 +4,6 @@
fetchFromGitHub, fetchFromGitHub,
cmake, cmake,
pkg-config, pkg-config,
SDL,
SDL2, SDL2,
ncurses, ncurses,
docbook_xsl, docbook_xsl,
@@ -24,10 +23,10 @@ stdenv.mkDerivation {
}; };
buildInputs = [ buildInputs = [
SDL
SDL2 SDL2
ncurses ncurses
]; ];
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
pkg-config pkg-config
@@ -35,11 +34,14 @@ stdenv.mkDerivation {
git git
]; ];
meta = with lib; { cmakeFlags = [ (lib.cmakeBool "BUILD_SDL_JSTEST" false) ];
meta = {
homepage = "https://github.com/Grumbel/sdl-jstest"; homepage = "https://github.com/Grumbel/sdl-jstest";
description = "Simple SDL joystick test application for the console"; description = "Simple SDL joystick test application for the console";
license = licenses.gpl3; license = lib.licenses.gpl3Plus;
platforms = platforms.linux; platforms = lib.platforms.linux;
maintainers = [ ]; maintainers = [ ];
mainProgram = "sdl2-jstest";
}; };
} }