depot/third_party/nixpkgs/pkgs/development/tools/gamecube-tools/default.nix
Default email c7e6337bd0 Project import generated by Copybara.
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
2023-04-29 12:46:19 -04:00

24 lines
630 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook
, freeimage, libGL }:
stdenv.mkDerivation rec {
version = "1.0.6";
pname = "gamecube-tools";
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ freeimage libGL ];
src = fetchFromGitHub {
owner = "devkitPro";
repo = "gamecube-tools";
rev = "v${version}";
sha256 = "sha256-GsTmwyxBc36Qg+UGy+cRAjGW1eh1XxV0s94B14ZJAjU=";
};
meta = with lib; {
description = "Tools for gamecube/wii projects";
homepage = "https://github.com/devkitPro/gamecube-tools/";
license = licenses.gpl2;
maintainers = with maintainers; [ tomsmeets ];
};
}