First draft of modpack module

This commit is contained in:
Daniel Hutzley
2021-11-17 20:34:21 -08:00
parent 359e81083e
commit a204df5e11
6 changed files with 464 additions and 156 deletions

7
shell.nix Normal file
View File

@@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
rustc cargo openssl pkg-config
];
}