about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/sdl-jstest/default.nix
blob: c299a140b0790269ff4f85086ea63eb65eacf0ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, stdenv, fetchgit, cmake, pkg-config, SDL, SDL2, ncurses, docbook_xsl, git }:

stdenv.mkDerivation {
  pname = "sdl-jstest";
  version = "2018-06-15";

  # Submodules
  src = fetchgit {
    url = "https://github.com/Grumbel/sdl-jstest";
    rev = "aafbdb1ed3e687583037ba55ae88b1210d6ce98b";
    sha256 = "0p4cjzcq0bbkzad19jwdklylqhq2q390q7dpg8bfzl2rwls883rk";
  };

  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 ];
  };
}