blob: e3d087ec5d7665f0c35d3f60c0c0545982229598 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "moxide";
version = "0.3.0";
cargoHash = "sha256-j4yV86Hr6QZTZ/0Dy9y+2egxGqf1Z930Zg6dsKs5bxg=";
src = fetchFromGitHub {
owner = "dlurak";
repo = "moxide";
tag = "v${finalAttrs.version}";
hash = "sha256-BTg1z3pU9mGnexlXBdJ5ZqJeykpzGmhCbEKtvVxGEKo=";
};
meta = {
description = "Tmux session manager with a modular configuration";
mainProgram = "moxide";
homepage = "https://github.com/dlurak/moxide";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ dlurak ];
};
})
|