mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01: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.
39 lines
953 B
Nix
39 lines
953 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, bluez
|
|
, libobjc
|
|
, Foundation
|
|
, IOBluetooth
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "WiiUse";
|
|
version = "0.15.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wiiuse";
|
|
repo = "wiiuse";
|
|
rev = version;
|
|
sha256 = "05gc3s0wxx7ga4g32yyibyxdh46rm9bbslblrc72ynrjxq98sg13";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ bluez ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ libobjc Foundation IOBluetooth ];
|
|
|
|
propagatedBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ bluez ];
|
|
|
|
cmakeFlags = [ "-DBUILD_EXAMPLE_SDL=OFF" ];
|
|
|
|
meta = with lib; {
|
|
description = "Feature complete cross-platform Wii Remote access library";
|
|
mainProgram = "wiiuseexample";
|
|
license = licenses.gpl3Plus;
|
|
homepage = "https://github.com/wiiuse/wiiuse";
|
|
maintainers = with maintainers; [ shamilton ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|