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
+2
View File
@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'teamocil'
+13
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
+17
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
];
};
}
+10
View File
@@ -0,0 +1,10 @@
{
teamocil = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "1l5f33faipb45xx7ds67s7dqgvjlljlcxgpgig4pg8p002vg06r2";
type = "gem";
};
version = "1.4.2";
};
}
+10
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