Compare commits
No commits in common. "7bebb4c1763f82257f72074877fee2920565b613" and "52ad5bf750777793fd82da31f94ad43ef6bc7c20" have entirely different histories.
7bebb4c176
...
52ad5bf750
15
packages/default.nix
Normal file
15
packages/default.nix
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# default.nix
|
||||||
|
{
|
||||||
|
inputs = {
|
||||||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||||
|
};
|
||||||
|
outputs =
|
||||||
|
{ self, nixpkgs }:
|
||||||
|
let
|
||||||
|
system = "x86_64-linux";
|
||||||
|
pkgs = import nixpkgs { inherit system; };
|
||||||
|
in
|
||||||
|
{
|
||||||
|
questpatcher = pkgs.callPackage ./questpatcher.nix { };
|
||||||
|
};
|
||||||
|
}
|
23
packages/questpatcher.nix
Normal file
23
packages/questpatcher.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ 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;
|
||||||
|
}
|
@ -16,7 +16,6 @@
|
|||||||
./programs/obs-studio
|
./programs/obs-studio
|
||||||
./programs/vscode
|
./programs/vscode
|
||||||
./programs/games
|
./programs/games
|
||||||
./programs/questpatcher
|
|
||||||
./scripts
|
./scripts
|
||||||
./zsh
|
./zsh
|
||||||
./packages
|
./packages
|
||||||
|
Loading…
Reference in New Issue
Block a user