2021-01-17 03:09:27 +01:00
|
|
|
{ lib, stdenv, libusb1, pkg-config, fetchFromGitHub }:
|
2016-04-28 20:47:48 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2016-04-28 20:47:48 +02:00
|
|
|
pname = "ltwheelconf";
|
|
|
|
version = "0.2.7";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "thk";
|
|
|
|
repo = "ltwheelconf";
|
|
|
|
rev = "df55451f059d593b0259431662612ab5c2bef859";
|
|
|
|
sha256 = "1fsz7k73yln987gcx1jvb5irxfbp1x2c457a60a8yap27nkp5y2w";
|
|
|
|
};
|
|
|
|
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 23:26:13 +02:00
|
|
|
buildInputs = [ libusb1 ];
|
2016-04-28 20:47:48 +02:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp ltwheelconf $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/thk/LTWheelConf";
|
2016-04-28 20:47:48 +02:00
|
|
|
description = "Logitech wheels configuration tool";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.ebzzry ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|