linuxmotehook2: init at 0.1.4
This commit is contained in:
parent
dbe8e38e11
commit
4e39a2ba3b
|
@ -29,6 +29,8 @@ in
|
||||||
|
|
||||||
hcloud_exporter = callPackage ./hcloud_exporter { };
|
hcloud_exporter = callPackage ./hcloud_exporter { };
|
||||||
|
|
||||||
|
linuxmotehook2 = callPackage ./linuxmotehook2 { };
|
||||||
|
|
||||||
mpvScripts = prev.mpvScripts // {
|
mpvScripts = prev.mpvScripts // {
|
||||||
pitchcontrol = callPackage ./mpv-scripts/pitchcontrol { };
|
pitchcontrol = callPackage ./mpv-scripts/pitchcontrol { };
|
||||||
};
|
};
|
||||||
|
|
|
@ -53,6 +53,7 @@
|
||||||
face_morpher
|
face_morpher
|
||||||
gust_tools
|
gust_tools
|
||||||
hcloud_exporter
|
hcloud_exporter
|
||||||
|
linuxmotehook2
|
||||||
netstick
|
netstick
|
||||||
nsz
|
nsz
|
||||||
playgsf
|
playgsf
|
||||||
|
|
25
linuxmotehook2/default.nix
Normal file
25
linuxmotehook2/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue