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

54 lines
1.6 KiB
Nix
Raw Normal View History

2020-05-01 16:46:05 +02:00
{ lib, buildRubyGem, ruby, installShellFiles }:
2015-02-21 04:49:45 +01:00
2016-05-31 19:36:04 +02:00
# Cannot use bundleEnv because bundleEnv create stub with
# BUNDLE_FROZEN='1' environment variable set, which broke everything
# that rely on Bundler that runs under Tmuxinator.
2015-02-21 04:49:45 +01:00
2016-05-31 19:36:04 +02:00
buildRubyGem rec {
2015-02-21 04:49:45 +01:00
inherit ruby;
2016-05-31 19:36:04 +02:00
name = "${gemName}-${version}";
gemName = "tmuxinator";
2020-05-04 19:16:19 +02:00
version = "2.0.1";
source.sha256 = "03q1q6majci0l6kzw6kv7r395jycrl862mlqmyydxcd29y8wm3m2";
2016-05-31 19:36:04 +02:00
erubis = buildRubyGem rec {
inherit ruby;
name = "ruby${ruby.version}-${gemName}-${version}";
gemName = "erubis";
version = "2.7.0";
source.sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3";
2016-05-31 19:36:04 +02:00
};
thor = buildRubyGem rec {
inherit ruby;
name = "ruby${ruby.version}-${gemName}-${version}";
gemName = "thor";
2020-01-20 17:59:53 +01:00
version = "1.0.1";
source.sha256 = "1xbhkmyhlxwzshaqa7swy2bx6vd64mm0wrr8g3jywvxy7hg0cwkm";
2016-05-31 19:36:04 +02:00
};
2017-10-21 00:00:33 +02:00
xdg = buildRubyGem rec {
inherit ruby;
name = "ruby${ruby.version}-${gemName}-${version}";
gemName = "xdg";
2020-01-20 17:59:53 +01:00
version = "2.2.5";
source.sha256 = "04xr4cavnzxlk926pkji7b5yiqy4qsd3gdvv8mg6jliq6sczg9gk";
2017-10-21 00:00:33 +02:00
};
propagatedBuildInputs = [ erubis thor xdg ];
2015-02-21 04:49:45 +01:00
2020-05-01 16:46:05 +02:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion $GEM_HOME/gems/${gemName}-${version}/completion/tmuxinator.{bash,zsh,fish}
'';
2015-02-21 04:49:45 +01:00
meta = with lib; {
description = "Manage complex tmux sessions easily";
homepage = "https://github.com/tmuxinator/tmuxinator";
license = licenses.mit;
2017-06-18 13:45:51 +02:00
maintainers = with maintainers; [ auntie ericsagnes ];
2015-02-21 04:49:45 +01:00
platforms = platforms.unix;
};
2017-06-18 13:45:51 +02:00
}