at 23.05-pre 24 lines 630 B view raw
1{ lib, stdenv, fetchFromGitHub, autoreconfHook 2, freeimage, libGL }: 3 4stdenv.mkDerivation rec { 5 version = "1.0.4"; 6 pname = "gamecube-tools"; 7 8 nativeBuildInputs = [ autoreconfHook ]; 9 buildInputs = [ freeimage libGL ]; 10 11 src = fetchFromGitHub { 12 owner = "devkitPro"; 13 repo = "gamecube-tools"; 14 rev = "v${version}"; 15 sha256 = "sha256-0iMY2LokfsYgHzIuFc8RlrVlJCURqVqprP54PG4oW0M="; 16 }; 17 18 meta = with lib; { 19 description = "Tools for gamecube/wii projects"; 20 homepage = "https://github.com/devkitPro/gamecube-tools/"; 21 license = licenses.gpl2; 22 maintainers = with maintainers; [ tomsmeets ]; 23 }; 24}