python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / misc / drivers / logiops / default.nix
blob71283a406214ebab14ceed1a2529b985728dcf55
1 { lib, stdenv, fetchFromGitHub, pkg-config, cmake, udev, libevdev, libconfig }:
3 stdenv.mkDerivation rec {
4   pname = "logiops";
5   version = "0.2.3";
7   src = fetchFromGitHub {
8     owner = "pixlone";
9     repo = "logiops";
10     rev = "v${version}";
11     sha256 = "sha256-1v728hbIM2ODtB+r6SYzItczRJCsbuTvhYD2OUM1+/E=";
12   };
14   PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system";
16   nativeBuildInputs = [ cmake pkg-config ];
17   buildInputs = [ udev libevdev libconfig ];
19   meta = with lib; {
20     description = "Unofficial userspace driver for HID++ Logitech devices";
21     homepage = "https://github.com/PixlOne/logiops";
22     license = licenses.gpl3Plus;
23     maintainers = with maintainers; [ ckie ];
24     platforms = with platforms; linux;
25   };