Merge pull request #316457 from o0th/add-tmux-nova

tmuxPlugins.tmux-nova: init at 1.2.0
This commit is contained in:
Pol Dellaiera 2024-06-05 09:34:41 +02:00 committed by GitHub
commit 88d8b82748
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 25 additions and 0 deletions

View File

@ -15212,6 +15212,12 @@
githubId = 30825096;
name = "Ning Zhang";
};
o0th = {
email = "o0th@pm.me";
name = "Sabato Luca Guadagno";
github = "o0th";
githubId = 22490354;
};
oaksoaj = {
email = "oaksoaj@riseup.net";
name = "Oaksoaj";

View File

@ -818,4 +818,23 @@ in rec {
sha256 = "hRvkBf+YrWycecnDixAsD4CAHg3KsioomfJ/nLl5Zgs=";
};
};
tmux-nova = mkTmuxPlugin rec {
pluginName = "tmux-nova";
rtpFilePath = "nova.tmux";
version = "1.2.0";
src = fetchFromGitHub {
owner = "o0th";
repo = "tmux-nova";
rev = "v${version}";
sha256 = "16llz3nlyw88lyd8mmj27i0ncyhpfjj5c1yikngf7nxcqsbjmcnh";
};
meta = with lib; {
homepage = "https://github.com/o0th/tmux-nova";
description = "tmux-nova theme";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ o0th ];
};
};
}