WiiUse: Init at 0.15.5
This commit is contained in:
parent
a99ceffcb6
commit
344dd8d193
33
pkgs/development/libraries/wiiuse/default.nix
Normal file
33
pkgs/development/libraries/wiiuse/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, pkg-config
|
||||||
|
, bluez
|
||||||
|
}:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
pname = "WiiUse";
|
||||||
|
version = "0.15.5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "wiiuse";
|
||||||
|
repo = "wiiuse";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "05gc3s0wxx7ga4g32yyibyxdh46rm9bbslblrc72ynrjxq98sg13";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
buildInputs = [ (lib.getDev bluez) ];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DBUILD_EXAMPLE_SDL=NO" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Feature complete cross-platform Wii Remote access library";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
homepage = "https://github.com/wiiuse/wiiuse";
|
||||||
|
maintainers = with maintainers; [ shamilton ];
|
||||||
|
platforms = with platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
@ -7691,6 +7691,8 @@ in
|
|||||||
|
|
||||||
whsniff = callPackage ../applications/networking/sniffers/whsniff { };
|
whsniff = callPackage ../applications/networking/sniffers/whsniff { };
|
||||||
|
|
||||||
|
wiiuse = callPackage ../development/libraries/wiiuse { };
|
||||||
|
|
||||||
woeusb = callPackage ../tools/misc/woeusb { };
|
woeusb = callPackage ../tools/misc/woeusb { };
|
||||||
|
|
||||||
chase = callPackage ../tools/system/chase { };
|
chase = callPackage ../tools/system/chase { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user