nixos/user/packages/questpatcher/questpatcher.nix

26 lines
609 B
Nix
Raw Normal View History

2024-05-14 15:42:09 +00:00
{ fetchFromGitHub
, buildDotnetModule
, dotnetCorePackages
}:
buildDotnetModule rec {
pname = "questpatcher";
version = "v0.1";
src = fetchFromGitHub {
owner = "Lauriethefish";
repo = "QuestPatcher";
rev = "2.8.0";
sha256 = "myDaWSo44b7c8uO0vmmCHiX9r6SaCWoz/GuS1+YegAc=";
};
projectFile = "QuestPatcher/QuestPatcher.csproj";
meta = {
homepage = "https://github.com/Lauriethefish/QuestPatcher";
description = "Meta Quest APK Patching Tools";
};
dotnet-sdk = dotnetCorePackages.sdk_6_0;
dotnet-runtime = dotnetCorePackages.runtime_6_0;
2024-05-14 15:53:55 +00:00
nugetDeps = "./deps.nix";
2024-05-14 15:42:09 +00:00
}
2024-05-14 15:53:55 +00:00