Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchFromGitHub, autoreconfHook 2, freeimage, libGL }: 3 4stdenv.mkDerivation rec { 5 version = "1.0.6"; 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-GsTmwyxBc36Qg+UGy+cRAjGW1eh1XxV0s94B14ZJAjU="; 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}