gamecube-tools: init at v1.0.2
This commit is contained in:
parent
307404bfa5
commit
8f25e3d4cd
25
pkgs/development/tools/gamecube-tools/default.nix
Normal file
25
pkgs/development/tools/gamecube-tools/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user