This commit is contained in:
parent
fe9a300dc5
commit
1f996cb8b8
1 changed files with 10 additions and 1 deletions
11
shell.nix
11
shell.nix
|
@ -3,5 +3,14 @@ let
|
||||||
pkgs = import (fetchTarball("https://github.com/NixOS/nixpkgs/archive/8b27c1239e5c421a2bbc2c65d52e4a6fbf2ff296.tar.gz")) {};
|
pkgs = import (fetchTarball("https://github.com/NixOS/nixpkgs/archive/8b27c1239e5c421a2bbc2c65d52e4a6fbf2ff296.tar.gz")) {};
|
||||||
|
|
||||||
in pkgs.mkShell {
|
in pkgs.mkShell {
|
||||||
buildInputs = [ pkgs.cargo pkgs.rustc pkgs.act ];
|
buildInputs = [
|
||||||
|
# Rust tooling
|
||||||
|
pkgs.cargo pkgs.rustc
|
||||||
|
# Workflow tools
|
||||||
|
pkgs.act
|
||||||
|
# System libraries needed
|
||||||
|
pkgs.pkg-config
|
||||||
|
pkgs.alsa-lib
|
||||||
|
pkgs.udev
|
||||||
|
];
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue