mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
28 lines
800 B
Nix
28 lines
800 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, udev, libevdev, libconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "logiops";
|
|
version = "0.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pixlone";
|
|
repo = "logiops";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-1v728hbIM2ODtB+r6SYzItczRJCsbuTvhYD2OUM1+/E=";
|
|
};
|
|
|
|
PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system";
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ udev libevdev libconfig ];
|
|
|
|
meta = with lib; {
|
|
description = "Unofficial userspace driver for HID++ Logitech devices";
|
|
mainProgram = "logid";
|
|
homepage = "https://github.com/PixlOne/logiops";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ ckie ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|