tek/shell.nix
2024-07-04 01:36:30 +03:00

8 lines
140 B
Nix

{pkgs?import<nixpkgs>{}}:pkgs.mkShell{
nativeBuildInputs = with pkgs; [
pkg-config
];
buildInputs = with pkgs; [
jack2
];
}