rusty-jeep: init

This commit is contained in:
2023-01-07 09:18:39 +01:00
parent 84ad803482
commit c8e80b34c0
6 changed files with 1134 additions and 0 deletions

10
rusty-jeep/shell.nix Normal file
View File

@@ -0,0 +1,10 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = [
pkgs.rustc
pkgs.cargo
pkgs.rustfmt
pkgs.pkg-config
pkgs.alsa-lib
];
}