mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 16:11:58 +00:00
19 lines
438 B
Nix
19 lines
438 B
Nix
|
{ stdenv, lib, bundlerEnv, ruby }:
|
||
|
|
||
|
bundlerEnv {
|
||
|
name = "tmuxinator-0.6.9";
|
||
|
|
||
|
inherit ruby;
|
||
|
gemfile = ./Gemfile;
|
||
|
lockfile = ./Gemfile.lock;
|
||
|
gemset = ./gemset.nix;
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Manage complex tmux sessions easily";
|
||
|
homepage = https://github.com/tmuxinator/tmuxinator;
|
||
|
license = with licenses; mit;
|
||
|
maintainers = with maintainers; [ auntie ];
|
||
|
platforms = platforms.unix;
|
||
|
};
|
||
|
}
|