From 650e9b25bdef9074cb01036c401b8713462fc2d3 Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Fri, 29 Apr 2016 02:47:48 +0800 Subject: ltwheelconf: init at 0.2.7 --- pkgs/applications/misc/ltwheelconf/default.nix | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pkgs/applications/misc/ltwheelconf/default.nix (limited to 'pkgs/applications/misc/ltwheelconf') diff --git a/pkgs/applications/misc/ltwheelconf/default.nix b/pkgs/applications/misc/ltwheelconf/default.nix new file mode 100644 index 000000000000..5450f5f2fc84 --- /dev/null +++ b/pkgs/applications/misc/ltwheelconf/default.nix @@ -0,0 +1,29 @@ +{ stdenv, libusb1, pkgconfig, fetchFromGitHub }: + +stdenv.mkDerivation rec { + pname = "ltwheelconf"; + version = "0.2.7"; + name = "${pname}-${version}"; + + src = fetchFromGitHub { + owner = "thk"; + repo = "ltwheelconf"; + rev = "df55451f059d593b0259431662612ab5c2bef859"; + sha256 = "1fsz7k73yln987gcx1jvb5irxfbp1x2c457a60a8yap27nkp5y2w"; + }; + + buildInputs = [ libusb1 pkgconfig ]; + + 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; + }; +} -- cgit 1.4.1