1 { lib, stdenv, fetchFromGitHub, autoconf, automake, zlib }:
2 stdenv.mkDerivation rec {
6 nativeBuildInputs = [ autoconf automake ];
7 buildInputs = [ zlib ];
9 src = fetchFromGitHub {
13 sha256 = "sha256-pZdZzCAPfAVucuiV/q/ROY3cz/wxQWep6dCTGNn2fSo=";
16 preConfigure = "./autogen.sh";
19 description = "Load homebrew apps over network/usbgecko to your Wii";
20 mainProgram = "wiiload";
21 homepage = "https://wiibrew.org/wiki/Wiiload";
22 license = licenses.gpl2;
23 maintainers = with maintainers; [ tomsmeets ];