fix modpack build

This commit is contained in:
2026-01-07 11:33:37 +01:00
parent 599cdeb340
commit 7aaf2dbc57
2 changed files with 9 additions and 6 deletions
+6 -3
View File
@@ -20,14 +20,14 @@
packages =
let
mods = fetchPackwizModpack {
url = ./modpack/pack.toml;
url = "file:///${self.modpack-files}/pack.toml";
packHash = "sha256-IEGFlPqykpE4eBJdehwGMN3SdFRjue9JIZSwm9Lmp1I=";
};
in
{
mods = pkgs.stdenv.mkDerivation {
pname = "reclamation-mods";
version = "0.314";
version = "0.315";
src = ./.;
buildPhase = ''
mkdir -p $out/mods
@@ -37,5 +37,8 @@
};
};
}
);
)
// {
modpack-files = ./modpack;
};
}