nixpkgs/pkgs/tools/misc/tmuxp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
623 B
Nix
Raw Normal View History

2021-06-30 03:41:25 +00:00
{ lib, python3Packages }:
2016-08-01 14:01:02 +00:00
2021-06-30 03:41:25 +00:00
let
pypkgs = python3Packages;
2016-08-01 14:01:02 +00:00
2021-06-30 03:41:25 +00:00
in
pypkgs.buildPythonApplication rec {
2018-01-20 12:14:07 +00:00
pname = "tmuxp";
version = "1.11.0";
2016-08-01 14:01:02 +00:00
2021-06-30 03:41:25 +00:00
src = pypkgs.fetchPypi {
2018-01-20 12:14:07 +00:00
inherit pname version;
sha256 = "sha256-N5kZ+e17ZgLOCvV/lcT/hdG1VNqLxh98QOQyM0BmZCA=";
2016-08-01 14:01:02 +00:00
};
2018-01-20 12:14:07 +00:00
# No tests in archive
doCheck = false;
2021-06-30 03:41:25 +00:00
propagatedBuildInputs = with pypkgs; [
click
colorama
kaptan
libtmux
2016-08-01 14:01:02 +00:00
];
meta = with lib; {
2016-08-01 14:01:02 +00:00
description = "Manage tmux workspaces from JSON and YAML";
homepage = "https://tmuxp.git-pull.com/";
2016-08-01 14:01:02 +00:00
license = licenses.bsd3;
2021-06-30 03:41:25 +00:00
maintainers = with maintainers; [ peterhoeg ];
2016-08-01 14:01:02 +00:00
};
}