forked from mirrors/nixpkgs
teamocil: init at 1.4.2
This commit is contained in:
parent
8a57be9050
commit
68879b36cb
|
@ -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";
|
||||
|
|
2
pkgs/tools/misc/teamocil/Gemfile
Normal file
2
pkgs/tools/misc/teamocil/Gemfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
source 'https://rubygems.org'
|
||||
gem 'teamocil'
|
13
pkgs/tools/misc/teamocil/Gemfile.lock
Normal file
13
pkgs/tools/misc/teamocil/Gemfile.lock
Normal 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
pkgs/tools/misc/teamocil/default.nix
Normal file
17
pkgs/tools/misc/teamocil/default.nix
Normal 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
pkgs/tools/misc/teamocil/gemset.nix
Normal file
10
pkgs/tools/misc/teamocil/gemset.nix
Normal 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
10
pkgs/tools/misc/teamocil/update
Executable 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
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue