added homepage

This commit is contained in:
specCon18 2024-02-14 14:32:54 -05:00
commit 1936d7cab9
13 changed files with 1262 additions and 0 deletions

16
nix/devshell.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
# Get dependencies from the main package
inputsFrom = [ (pkgs.callPackage ./default.nix { }) ];
# Additional tooling
buildInputs = with pkgs; [
cargo
cargo-watch
rustc
rustup
clippy
rust-analyzer
pkg-config
bacon
];
}