nixpkgs/pkgs/tools/misc/tmuxinator/default.nix
Tobias Geerinckx-Rice 158e1cfdd0 Don't use "with licenses;" for single licences
And don't use square brackets on such lines.
2015-05-28 19:20:29 +02:00

19 lines
432 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 = licenses.mit;
maintainers = with maintainers; [ auntie ];
platforms = platforms.unix;
};
}