nixpkgs/pkgs/tools/misc/sdl-jstest/default.nix

25 lines
741 B
Nix
Raw Normal View History

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