2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, SDL }:
|
2012-10-01 01:24:37 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "linuxconsoletools";
|
2019-06-17 00:07:29 -07:00
|
|
|
version = "1.6.1";
|
2012-10-01 01:24:37 -07:00
|
|
|
|
2013-11-20 13:06:48 -08:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://sourceforge/linuxconsole/${pname}-${version}.tar.bz2";
|
2019-06-17 00:07:29 -07:00
|
|
|
sha256 = "0d2r3j916fl2y7pk1y82b9fvbr10dgs1gw7rqwzfpispdidb1mp9";
|
2012-10-01 01:24:37 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ SDL ];
|
2016-04-28 20:12:34 -07:00
|
|
|
|
2015-02-06 04:35:00 -08:00
|
|
|
makeFlags = [ "DESTDIR=$(out)"];
|
2012-10-01 01:24:37 -07:00
|
|
|
|
2019-11-04 17:10:31 -08:00
|
|
|
installFlags = [ "PREFIX=\"\"" ];
|
2016-04-28 20:12:34 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://sourceforge.net/projects/linuxconsole/";
|
2012-10-01 01:24:37 -07:00
|
|
|
description = "A set of tools for joysticks and serial peripherals";
|
2015-02-06 04:35:00 -08:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2016-04-28 20:12:34 -07:00
|
|
|
maintainers = with maintainers; [ pSub ebzzry ];
|
2012-10-01 01:24:37 -07: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
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|