2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoconf, automake, zlib }:
|
2018-12-17 20:45:43 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2023-12-25 03:41:41 +00:00
|
|
|
version = "0.5.3";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "wiiload";
|
2018-12-17 20:45:43 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ autoconf automake ];
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "devkitPro";
|
|
|
|
repo = "wiiload";
|
2019-11-06 18:59:17 +00:00
|
|
|
rev = "v${version}";
|
2023-12-25 03:41:41 +00:00
|
|
|
sha256 = "sha256-pZdZzCAPfAVucuiV/q/ROY3cz/wxQWep6dCTGNn2fSo=";
|
2018-12-17 20:45:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-12-17 20:45:43 +00:00
|
|
|
description = "Load homebrew apps over network/usbgecko to your Wii";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "wiiload";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://wiibrew.org/wiki/Wiiload";
|
2018-12-17 20:45:43 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ tomsmeets ];
|
|
|
|
};
|
|
|
|
}
|