teamocil: init at 1.4.2

This commit is contained in:
Zach Coyle 2018-09-28 16:59:03 -04:00
parent 8a57be9050
commit 68879b36cb
7 changed files with 59 additions and 0 deletions

View file

@ -4633,6 +4633,11 @@
github = "maggesi";
name = "Marco Maggesi";
};
zachcoyle = {
email = "zach.coyle@gmail.com";
github = "zachcoyle";
name = "Zach Coyle";
};
zagy = {
email = "cz@flyingcircus.io";
github = "zagy";

View file

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'teamocil'

View file

@ -0,0 +1,13 @@
GEM
remote: https://rubygems.org/
specs:
teamocil (1.4.2)
PLATFORMS
ruby
DEPENDENCIES
teamocil
BUNDLED WITH
1.16.3

View file

@ -0,0 +1,17 @@
{ lib, bundlerEnv, ruby }:
bundlerEnv rec {
inherit ruby;
pname = "teamocil";
gemdir = ./.;
meta = with lib; {
description = "A simple tool used to automatically create windows and panes in tmux with YAML files";
homepage = https://github.com/remiprev/teamocil;
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [
zachcoyle
];
};
}

View file

@ -0,0 +1,10 @@
{
teamocil = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "1l5f33faipb45xx7ds67s7dqgvjlljlcxgpgig4pg8p002vg06r2";
type = "gem";
};
version = "1.4.2";
};
}

10
pkgs/tools/misc/teamocil/update Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env nix-shell
#! nix-shell -i bash -p bash ruby bundler bundix
rm Gemfile.lock
bundler install
bundix
if [ "clean" == "$1" ]; then
rm -rf ~/.gem
fi

View file

@ -2320,6 +2320,8 @@ with pkgs;
tealdeer = callPackage ../tools/misc/tealdeer { };
teamocil = callPackage ../tools/misc/teamocil { };
uudeview = callPackage ../tools/misc/uudeview { };
uutils-coreutils = callPackage ../tools/misc/uutils-coreutils {