linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / sdl-jstest / default.nix
blobc299a140b0790269ff4f85086ea63eb65eacf0ba
1 { lib, stdenv, fetchgit, cmake, pkg-config, SDL, SDL2, ncurses, docbook_xsl, git }:
3 stdenv.mkDerivation {
4   pname = "sdl-jstest";
5   version = "2018-06-15";
7   # Submodules
8   src = fetchgit {
9     url = "https://github.com/Grumbel/sdl-jstest";
10     rev = "aafbdb1ed3e687583037ba55ae88b1210d6ce98b";
11     sha256 = "0p4cjzcq0bbkzad19jwdklylqhq2q390q7dpg8bfzl2rwls883rk";
12   };
14   buildInputs = [ SDL SDL2 ncurses ];
15   nativeBuildInputs = [ cmake pkg-config docbook_xsl git ];
17   meta = with lib; {
18     homepage = "https://github.com/Grumbel/sdl-jstest";
19     description = "Simple SDL joystick test application for the console";
20     license = licenses.gpl3;
21     platforms = platforms.linux;
22     maintainers = with maintainers; [ abbradar ];
23   };