tmuxp: init at 1.2.0
This commit is contained in:
parent
0fb70dfbb0
commit
9cc42ade37
25
pkgs/tools/misc/tmuxp/default.nix
Normal file
25
pkgs/tools/misc/tmuxp/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, pythonPackages }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "tmuxp-${version}";
|
||||
version = "1.2.0";
|
||||
|
||||
namePrefix = "";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/t/tmuxp/${name}.tar.gz";
|
||||
sha256 = "05z5ssv9glsqmcy9fdq06bawy1274dnzqsqd3a4z4jd0w6j09smn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
click colorama kaptan libtmux
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Manage tmux workspaces from JSON and YAML";
|
||||
homepage = "http://tmuxp.readthedocs.io";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ jgeerds ];
|
||||
};
|
||||
}
|
@ -3702,6 +3702,8 @@ in
|
||||
|
||||
tmux-cssh = callPackage ../tools/misc/tmux-cssh { };
|
||||
|
||||
tmuxp = callPackage ../tools/misc/tmuxp { };
|
||||
|
||||
tmuxinator = callPackage ../tools/misc/tmuxinator { };
|
||||
|
||||
tmin = callPackage ../tools/security/tmin { };
|
||||
|
Loading…
Reference in New Issue
Block a user