Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gamecube-tools: init at v1.0.2

+27
+25
pkgs/development/tools/gamecube-tools/default.nix
···
··· 1 + { stdenv, which, autoconf, automake, fetchFromGitHub, 2 + libtool, freeimage, mesa }: 3 + stdenv.mkDerivation rec { 4 + version = "v1.0.2"; 5 + name = "gamecube-tools-${version}"; 6 + 7 + nativeBuildInputs = [ which autoconf automake libtool ]; 8 + buildInputs = [ freeimage mesa ]; 9 + 10 + src = fetchFromGitHub { 11 + owner = "devkitPro"; 12 + repo = "gamecube-tools"; 13 + rev = version; 14 + sha256 = "0zvpkzqvl8iv4ndzhkjkmrzpampyzgb91spv0h2x2arl8zy4z7ca"; 15 + }; 16 + 17 + preConfigure = "./autogen.sh"; 18 + 19 + meta = with stdenv.lib; { 20 + description = "Tools for gamecube/wii projects"; 21 + homepage = "https://github.com/devkitPro/gamecube-tools/"; 22 + license = licenses.gpl2; 23 + maintainers = with maintainers; [ tomsmeets ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 730 731 genymotion = callPackage ../development/mobile/genymotion { }; 732 733 gams = callPackage ../tools/misc/gams { 734 licenseFile = config.gams.licenseFile or null; 735 optgamsFile = config.gams.optgamsFile or null;
··· 730 731 genymotion = callPackage ../development/mobile/genymotion { }; 732 733 + gamecube-tools = callPackage ../development/tools/gamecube-tools { }; 734 + 735 gams = callPackage ../tools/misc/gams { 736 licenseFile = config.gams.licenseFile or null; 737 optgamsFile = config.gams.optgamsFile or null;