summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ruby-tmuxinator/package.py
blob: dddf123b6af27ffe5b28f1b8103a3958284e5fb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)


from spack.package import *


class RubyTmuxinator(RubyPackage):
    """Create and manage complex tmux sessions easily."""

    homepage = "https://github.com/tmuxinator/tmuxinator"
    url = "https://github.com/tmuxinator/tmuxinator/archive/v2.0.1.tar.gz"

    license("MIT")

    version("2.0.1", sha256="a2c8428d239a6e869da516cecee3ac64db47ba1f1932317eb397b1afd698ee09")

    depends_on("ruby@2.5.8:", type=("build", "run"))
    depends_on("ruby-erubis@2.6:2", type=("build", "run"))
    depends_on("ruby-thor@1.0:1", type=("build", "run"))
    depends_on("ruby-xdg@2.2.5:2", type=("build", "run"))