2022-03-08 14:23:46 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, SDL, SDL2, ncurses, docbook_xsl, git }:
|
2015-06-12 00:01:48 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sdl-jstest";
|
2019-06-03 17:31:36 +01:00
|
|
|
version = "2018-06-15";
|
2016-04-30 01:04:51 +01:00
|
|
|
|
2022-03-08 14:23:46 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Grumbel";
|
|
|
|
repo = "sdl-jstest";
|
2019-06-03 17:31:36 +01:00
|
|
|
rev = "aafbdb1ed3e687583037ba55ae88b1210d6ce98b";
|
2022-03-08 14:23:46 +00:00
|
|
|
sha256 = "sha256-Mw+ENOVZ0O8WercdDNLAAkNMPZ2NyxSa+nMtgNmXjFw=";
|
|
|
|
fetchSubmodules = true;
|
2015-06-12 00:01:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ SDL SDL2 ncurses ];
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config docbook_xsl git ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Grumbel/sdl-jstest";
|
2015-06-12 00:01:48 +01:00
|
|
|
description = "Simple SDL joystick test application for the console";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|