nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5 autoreconfHook,
6 freeimage,
7 libGL,
8}:
9
10stdenv.mkDerivation rec {
11 version = "1.0.6";
12 pname = "gamecube-tools";
13
14 nativeBuildInputs = [ autoreconfHook ];
15 buildInputs = [
16 freeimage
17 libGL
18 ];
19
20 src = fetchFromGitHub {
21 owner = "devkitPro";
22 repo = "gamecube-tools";
23 rev = "v${version}";
24 sha256 = "sha256-GsTmwyxBc36Qg+UGy+cRAjGW1eh1XxV0s94B14ZJAjU=";
25 };
26
27 meta = with lib; {
28 description = "Tools for gamecube/wii projects";
29 homepage = "https://github.com/devkitPro/gamecube-tools/";
30 license = licenses.gpl2;
31 maintainers = with maintainers; [ tomsmeets ];
32 };
33}