depot/third_party/nixpkgs/pkgs/development/tools/gamecube-tools/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

24 lines
630 B
Nix

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