biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / ltwheelconf / default.nix
blobb9c53a58b03dec832643bfcc215ed1f4d573369e
1 { lib, stdenv, libusb1, pkg-config, fetchFromGitHub }:
3 stdenv.mkDerivation {
4   pname = "ltwheelconf";
5   version = "0.2.7";
7   src = fetchFromGitHub {
8     owner = "thk";
9     repo = "ltwheelconf";
10     rev = "df55451f059d593b0259431662612ab5c2bef859";
11     sha256 = "1fsz7k73yln987gcx1jvb5irxfbp1x2c457a60a8yap27nkp5y2w";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ libusb1 ];
17   installPhase = ''
18     mkdir -p $out/bin
19     cp ltwheelconf $out/bin
20   '';
22   meta = with lib; {
23     homepage = "https://github.com/thk/LTWheelConf";
24     description = "Logitech wheels configuration tool";
25     license = licenses.gpl3;
26     maintainers = [ maintainers.ebzzry ];
27     platforms = platforms.linux;
28     mainProgram = "ltwheelconf";
29   };