21 lines
221 B
Nix
21 lines
221 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
gcc
|
|
cmake
|
|
gnumake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = with pkgs; [
|
|
zstd
|
|
];
|
|
|
|
shellHook = ''
|
|
./tmux.sh
|
|
'';
|
|
}
|