mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
12 lines
213 B
Nix
12 lines
213 B
Nix
{ lib, tmuxPlugins }:
|
|
|
|
tmuxPlugins.mkTmuxPlugin {
|
|
pluginName = "project";
|
|
version = "unstable-2023-05-04";
|
|
src = ../.;
|
|
meta = with lib; {
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|