summary refs log tree commit diff
path: root/pkgs/applications/misc/ltwheelconf/default.nix
blob: 2ceb8e91def8705524c8040d2f0768395b619d87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, libusb1, pkgconfig, fetchFromGitHub }:

stdenv.mkDerivation {
  pname = "ltwheelconf";
  version = "0.2.7";

  src = fetchFromGitHub {
    owner = "thk";
    repo = "ltwheelconf";
    rev = "df55451f059d593b0259431662612ab5c2bef859";
    sha256 = "1fsz7k73yln987gcx1jvb5irxfbp1x2c457a60a8yap27nkp5y2w";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libusb1 ];

  installPhase = ''
    mkdir -p $out/bin
    cp ltwheelconf $out/bin
  '';

  meta = with stdenv.lib; {
    homepage = "https://github.com/thk/LTWheelConf";
    description = "Logitech wheels configuration tool";
    license = licenses.gpl3;
    maintainers = [ maintainers.ebzzry ];
    platforms = platforms.linux;
  };
}