mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 11:46:41 +01:00
8 lines
140 B
Nix
8 lines
140 B
Nix
{pkgs?import<nixpkgs>{}}:pkgs.mkShell{
|
|
nativeBuildInputs = with pkgs; [
|
|
pkg-config
|
|
];
|
|
buildInputs = with pkgs; [
|
|
jack2
|
|
];
|
|
}
|