]> Git — Sourcephile - julm/julm-nix.git/blob - nixpkgs/overlays/tmux.nix
tmux: enable socket activation
[julm/julm-nix.git] / nixpkgs / overlays / tmux.nix
1 self: super: {
2 tmuxPatched = super.tmux.overrideAttrs (oldAttrs: {
3 patches = oldAttrs.patches ++ [ tmux/0001-Add-support-for-systemd-socket-activation.patch ];
4 configureFlags = oldAttrs.configureFlags ++ ["--enable-systemd"];
5 buildInputs = oldAttrs.buildInputs ++ [self.systemd];
6 });
7 }