start work on prudp v0
This commit is contained in:
parent
5954ea434c
commit
4d4fc6c7bf
10 changed files with 160 additions and 7 deletions
18
shell.nix
Normal file
18
shell.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
pkgs ? import <nixpkgs> { },
|
||||
pkg ? pkgs.callPackage ./. { },
|
||||
}:
|
||||
pkgs.mkShell {
|
||||
# Get dependencies from the main package
|
||||
# inputsFrom = [ pkg ];
|
||||
# Additional tooling
|
||||
buildInputs = with pkgs; [
|
||||
cargo
|
||||
rust-analyzer # LSP Server
|
||||
rustfmt # Formatter
|
||||
clippy # Linter
|
||||
podman
|
||||
yq
|
||||
jq
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue