5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
23 lines
608 B
Nix
23 lines
608 B
Nix
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "i3nator";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pitkley";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "10rxvxq48dhzlw5p9fsj6x0ci4pap85s9b192zakgvk4h97ifp2p";
|
|
};
|
|
|
|
cargoHash = "sha256-74woBoLXuxE4v3iMvc+QWz5n5F5/peaFBgZu+3ULXRM=";
|
|
|
|
meta = with lib; {
|
|
description = "Tmuxinator for the i3 window manager";
|
|
homepage = "https://github.com/pitkley/i3nator";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ mpoquet ];
|
|
mainProgram = "i3nator";
|
|
};
|
|
}
|