nixpkgs/pkgs/by-name/lo/logiops_0_2_3/package.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
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.
2024-03-19 03:14:51 +01:00

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;
};
}