Merge pull request #52449 from TomSmeets/gamecube-tools

gamecube-tools: init at v1.0.2
This commit is contained in:
Matthew Bauer 2018-12-17 20:26:04 -06:00 committed by GitHub
commit b0ccd8be8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;