nixpkgs/pkgs/applications/misc/ltwheelconf/default.nix

30 lines
711 B
Nix
Raw Normal View History

{ lib, stdenv, libusb1, pkg-config, fetchFromGitHub }:
2016-04-28 18:47:48 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2016-04-28 18:47:48 +00:00
pname = "ltwheelconf";
version = "0.2.7";
src = fetchFromGitHub {
owner = "thk";
repo = "ltwheelconf";
rev = "df55451f059d593b0259431662612ab5c2bef859";
sha256 = "1fsz7k73yln987gcx1jvb5irxfbp1x2c457a60a8yap27nkp5y2w";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libusb1 ];
2016-04-28 18:47:48 +00:00
installPhase = ''
mkdir -p $out/bin
cp ltwheelconf $out/bin
'';
meta = with lib; {
homepage = "https://github.com/thk/LTWheelConf";
2016-04-28 18:47:48 +00:00
description = "Logitech wheels configuration tool";
license = licenses.gpl3;
maintainers = [ maintainers.ebzzry ];
platforms = platforms.linux;
};
}