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

22 lines
714 B
Nix
Raw Normal View History

2015-06-12 01:01:48 +02:00
{ fetchgit, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }:
stdenv.mkDerivation rec {
2015-07-28 11:20:09 +02:00
name = "sdl-jstest-20150625";
2015-06-12 01:01:48 +02:00
src = fetchgit {
url = "https://github.com/Grumbel/sdl-jstest";
2015-07-28 11:20:09 +02:00
rev = "3f54b86ebe0d2f95e9c1d034bc4ed02d6d2b6409";
sha256 = "d33e0a2c66b551ecf333590f1a6e1730093af31cee1be8757748624d42e14df1";
2015-06-12 01:01:48 +02:00
};
buildInputs = [ SDL SDL2 ncurses ];
nativeBuildInputs = [ cmake pkgconfig docbook_xsl ];
meta = with stdenv.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 ];
};
}