linuxmotehook2: init at 0.1.4

master
Simon Bruder 2022-08-12 23:58:53 +02:00
parent dbe8e38e11
commit 4e39a2ba3b
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
3 changed files with 28 additions and 0 deletions

View File

@ -29,6 +29,8 @@ in
hcloud_exporter = callPackage ./hcloud_exporter { };
linuxmotehook2 = callPackage ./linuxmotehook2 { };
mpvScripts = prev.mpvScripts // {
pitchcontrol = callPackage ./mpv-scripts/pitchcontrol { };
};

View File

@ -53,6 +53,7 @@
face_morpher
gust_tools
hcloud_exporter
linuxmotehook2
netstick
nsz
playgsf

View File

@ -0,0 +1,25 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, vala, glib, libgee, systemd }:
stdenv.mkDerivation rec {
pname = "linuxmotehook2";
version = "0.1.4";
src = fetchFromGitHub {
owner = "v1993";
repo = pname;
rev = "v${version}";
sha256 = "sha256-uJ+dHA2D/Mt74H76L5+ZP78uYejudxjQK3xkUpaLDkI=";
fetchSubmodules = true;
};
nativeBuildInputs = [ meson ninja pkg-config vala ];
buildInputs = [ glib libgee systemd.dev ];
meta = with lib; {
description = "Cemuhook UDP server for WiiMotes on Linux";
homepage = "https://github.com/v1993/linuxmotehook2";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.linux;
};
}