teamocil: init at 1.4.2
This commit is contained in:
parent
8a57be9050
commit
68879b36cb
|
@ -4633,6 +4633,11 @@
|
||||||
github = "maggesi";
|
github = "maggesi";
|
||||||
name = "Marco Maggesi";
|
name = "Marco Maggesi";
|
||||||
};
|
};
|
||||||
|
zachcoyle = {
|
||||||
|
email = "zach.coyle@gmail.com";
|
||||||
|
github = "zachcoyle";
|
||||||
|
name = "Zach Coyle";
|
||||||
|
};
|
||||||
zagy = {
|
zagy = {
|
||||||
email = "cz@flyingcircus.io";
|
email = "cz@flyingcircus.io";
|
||||||
github = "zagy";
|
github = "zagy";
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
source 'https://rubygems.org'
|
||||||
|
gem 'teamocil'
|
|
@ -0,0 +1,13 @@
|
||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
teamocil (1.4.2)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
teamocil
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
1.16.3
|
|
@ -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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
teamocil = {
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1l5f33faipb45xx7ds67s7dqgvjlljlcxgpgig4pg8p002vg06r2";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "1.4.2";
|
||||||
|
};
|
||||||
|
}
|
|
@ -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
|
|
@ -2320,6 +2320,8 @@ with pkgs;
|
||||||
|
|
||||||
tealdeer = callPackage ../tools/misc/tealdeer { };
|
tealdeer = callPackage ../tools/misc/tealdeer { };
|
||||||
|
|
||||||
|
teamocil = callPackage ../tools/misc/teamocil { };
|
||||||
|
|
||||||
uudeview = callPackage ../tools/misc/uudeview { };
|
uudeview = callPackage ../tools/misc/uudeview { };
|
||||||
|
|
||||||
uutils-coreutils = callPackage ../tools/misc/uutils-coreutils {
|
uutils-coreutils = callPackage ../tools/misc/uutils-coreutils {
|
||||||
|
|
Loading…
Reference in New Issue