gamecube-tools: init at v1.0.2

This commit is contained in:
Tom Smeets 2018-12-17 21:37:34 +01:00
parent 307404bfa5
commit 8f25e3d4cd
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, which, autoconf, automake, fetchFromGitHub,
libtool, freeimage, mesa }:
stdenv.mkDerivation rec {
version = "v1.0.2";
name = "gamecube-tools-${version}";
nativeBuildInputs = [ which autoconf automake libtool ];
buildInputs = [ freeimage mesa ];
src = fetchFromGitHub {
owner = "devkitPro";
repo = "gamecube-tools";
rev = version;
sha256 = "0zvpkzqvl8iv4ndzhkjkmrzpampyzgb91spv0h2x2arl8zy4z7ca";
};
preConfigure = "./autogen.sh";
meta = with stdenv.lib; {
description = "Tools for gamecube/wii projects";
homepage = "https://github.com/devkitPro/gamecube-tools/";
license = licenses.gpl2;
maintainers = with maintainers; [ tomsmeets ];
};
}

View file

@ -730,6 +730,8 @@ in
genymotion = callPackage ../development/mobile/genymotion { };
gamecube-tools = callPackage ../development/tools/gamecube-tools { };
gams = callPackage ../tools/misc/gams {
licenseFile = config.gams.licenseFile or null;
optgamsFile = config.gams.optgamsFile or null;