Skip to content

Commit

Permalink
moxide: init at 0.1.0 (#368597)
Browse files Browse the repository at this point in the history
  • Loading branch information
misuzu authored Jan 3, 2025
2 parents dca5800 + 35d4823 commit 51ad908
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5892,6 +5892,11 @@
githubId = 283316;
name = "Dane Lipscombe";
};
dlurak = {
github = "dlurak";
githubId = 84224239;
name = "dlurak";
};
dmadisetti = {
email = "[email protected]";
github = "dmadisetti";
Expand Down
25 changes: 25 additions & 0 deletions pkgs/by-name/mo/moxide/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "moxide";
version = "0.1.0";

cargoHash = "sha256-MqJ3lxnzvvmNXEMgx0su8vRDXAZbNtPuuphNzjeMN+w=";
src = fetchFromGitHub {
owner = "dlurak";
repo = "moxide";
tag = "v${version}";
hash = "sha256-XYEcMaHqu84aKIcV0pQZXl4sIeH9BkRGA2gcwZveXCU=";
};

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 ];
};
}

0 comments on commit 51ad908

Please sign in to comment.