tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
gamecube-tools: init at v1.0.2
Tom Smeets
7 years ago
8f25e3d4
307404bf
+27
2 changed files
expand all
collapse all
unified
split
pkgs
development
tools
gamecube-tools
default.nix
top-level
all-packages.nix
+25
pkgs/development/tools/gamecube-tools/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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
0
0
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;