Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
970 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
gitUpdater,
}:
stdenv.mkDerivation rec {
pname = "ctrtool";
version = "1.2.1";
src = fetchFromGitHub {
owner = "jakcron";
repo = "Project_CTR";
rev = "ctrtool-v${version}";
sha256 = "HqqeQCEUof4EBUhuUAdTruMFgYIoXhtAN3yuWW6tD+Y=";
};
sourceRoot = "${src.name}/ctrtool";
enableParallelBuilding = true;
preBuild = ''
make -j $NIX_BUILD_CORES deps
'';
# workaround for https://github.com/3DSGuy/Project_CTR/issues/145
env.NIX_CFLAGS_COMPILE = "-O0";
installPhase = "
mkdir $out/bin -p
cp bin/ctrtool${stdenv.hostPlatform.extensions.executable} $out/bin/
";
passthru.updateScript = gitUpdater { rev-prefix = "ctrtool-v"; };
meta = {
license = lib.licenses.mit;
description = "Tool to extract data from a 3ds rom";
platforms = with lib.platforms; linux ++ darwin;
maintainers = with lib.maintainers; [ marius851000 ];
mainProgram = "ctrtool";
};
}