2013-11-20 21:06:48 +00:00
|
|
|
{ stdenv, fetchurl, SDL }:
|
2012-10-01 08:24:37 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "linuxconsoletools-${version}";
|
2016-01-15 20:35:29 +00:00
|
|
|
version = "1.4.9";
|
2012-10-01 08:24:37 +00:00
|
|
|
|
2013-11-20 21:06:48 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/linuxconsole/${name}.tar.bz2";
|
2016-01-15 20:35:29 +00:00
|
|
|
sha256 = "0rwv2fxn12bblp096m9jy1lhngz26lv6g6zs4cgfg4frikwn977s";
|
2012-10-01 08:24:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ SDL ];
|
2016-04-29 03:12:34 +00:00
|
|
|
|
2015-02-06 12:35:00 +00:00
|
|
|
makeFlags = [ "DESTDIR=$(out)"];
|
2012-10-01 08:24:37 +00:00
|
|
|
|
2016-04-29 03:12:34 +00:00
|
|
|
installFlags = ''PREFIX=""'';
|
|
|
|
|
2015-02-06 12:35:00 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://sourceforge.net/projects/linuxconsole/;
|
2012-10-01 08:24:37 +00:00
|
|
|
description = "A set of tools for joysticks and serial peripherals";
|
2015-02-06 12:35:00 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2016-04-29 03:12:34 +00:00
|
|
|
maintainers = with maintainers; [ pSub ebzzry ];
|
2012-10-01 08:24:37 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The included tools are:
|
|
|
|
|
|
|
|
ffcfstress(1) - force-feedback stress test
|
|
|
|
ffmvforce(1) - force-feedback orientation test
|
|
|
|
ffset(1) - force-feedback configuration tool
|
|
|
|
fftest(1) - general force-feedback test
|
|
|
|
jstest(1) - joystick test
|
|
|
|
jscal(1) - joystick calibration tool
|
|
|
|
inputattach(1) - connects legacy serial devices to the input layer
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|