2019-06-03 09:31:36 -07:00
|
|
|
{ stdenv, fetchgit, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl, git }:
|
2015-06-11 16:01:48 -07:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "sdl-jstest";
|
2019-06-03 09:31:36 -07:00
|
|
|
version = "2018-06-15";
|
2016-04-29 17:04:51 -07:00
|
|
|
|
2019-06-03 09:31:36 -07:00
|
|
|
# Submodules
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/Grumbel/sdl-jstest";
|
|
|
|
rev = "aafbdb1ed3e687583037ba55ae88b1210d6ce98b";
|
|
|
|
sha256 = "0p4cjzcq0bbkzad19jwdklylqhq2q390q7dpg8bfzl2rwls883rk";
|
2015-06-11 16:01:48 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ SDL SDL2 ncurses ];
|
2019-06-03 09:31:36 -07:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig docbook_xsl git ];
|
2015-06-11 16:01:48 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/Grumbel/sdl-jstest";
|
2015-06-11 16:01:48 -07:00
|
|
|
description = "Simple SDL joystick test application for the console";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|