i3nator: init at 1.2.0
This commit is contained in:
parent
06b27898a4
commit
749d98a988
2 changed files with 24 additions and 0 deletions
22
pkgs/tools/misc/i3nator/default.nix
Normal file
22
pkgs/tools/misc/i3nator/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "i3nator";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pitkley";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "10rxvxq48dhzlw5p9fsj6x0ci4pap85s9b192zakgvk4h97ifp2p";
|
||||
};
|
||||
|
||||
cargoSha256 = "1i58ix414klm72562scqhb0lmy4wgpiksriz5qs4ss7lzvqdsizy";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tmuxinator for the i3 window manager";
|
||||
homepage = "https://github.com/pitkley/i3nator";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ mpoquet ];
|
||||
};
|
||||
}
|
|
@ -21255,6 +21255,8 @@ in
|
|||
|
||||
i3minator = callPackage ../tools/misc/i3minator { };
|
||||
|
||||
i3nator = callPackage ../tools/misc/i3nator { };
|
||||
|
||||
i3pystatus = callPackage ../applications/window-managers/i3/pystatus.nix { };
|
||||
|
||||
i3status = callPackage ../applications/window-managers/i3/status.nix { };
|
||||
|
|
Loading…
Reference in a new issue