nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.09 24 lines 633 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook 2, freeimage, libGL }: 3 4stdenv.mkDerivation rec { 5 version = "1.0.2"; 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 = "0zvpkzqvl8iv4ndzhkjkmrzpampyzgb91spv0h2x2arl8zy4z7ca"; 16 }; 17 18 meta = with stdenv.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}