mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
ltwheelconf: init at 0.2.7
This commit is contained in:
parent
a19016b79e
commit
650e9b25bd
29
pkgs/applications/misc/ltwheelconf/default.nix
Normal file
29
pkgs/applications/misc/ltwheelconf/default.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -2132,6 +2132,8 @@ in
|
|||||||
lua = lua5_2_compat;
|
lua = lua5_2_compat;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ltwheelconf = callPackage ../applications/misc/ltwheelconf { };
|
||||||
|
|
||||||
kippo = callPackage ../servers/kippo { };
|
kippo = callPackage ../servers/kippo { };
|
||||||
|
|
||||||
kzipmix = callPackage_i686 ../tools/compression/kzipmix { };
|
kzipmix = callPackage_i686 ../tools/compression/kzipmix { };
|
||||||
|
Loading…
Reference in New Issue
Block a user