My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/sdl-jstest/default.nix

25 lines
764 B

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, SDL, SDL2, ncurses, docbook_xsl, git }:
stdenv.mkDerivation {
pname = "sdl-jstest";
version = "2018-06-15";
src = fetchFromGitHub {
owner = "Grumbel";
repo = "sdl-jstest";
rev = "aafbdb1ed3e687583037ba55ae88b1210d6ce98b";
sha256 = "sha256-Mw+ENOVZ0O8WercdDNLAAkNMPZ2NyxSa+nMtgNmXjFw=";
fetchSubmodules = true;
};
buildInputs = [ SDL SDL2 ncurses ];
nativeBuildInputs = [ cmake pkg-config docbook_xsl git ];
meta = with lib; {
homepage = "https://github.com/Grumbel/sdl-jstest";
description = "Simple SDL joystick test application for the console";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}