Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 541 B view raw
1{ 2 lib, 3 bundlerEnv, 4 ruby, 5 bundlerUpdateScript, 6}: 7 8bundlerEnv { 9 inherit ruby; 10 pname = "teamocil"; 11 gemdir = ./.; 12 13 passthru.updateScript = bundlerUpdateScript "teamocil"; 14 15 meta = with lib; { 16 description = "Simple tool used to automatically create windows and panes in tmux with YAML files"; 17 homepage = "https://github.com/remiprev/teamocil"; 18 license = licenses.mit; 19 platforms = platforms.all; 20 maintainers = with maintainers; [ 21 zachcoyle 22 nicknovitski 23 ]; 24 mainProgram = "teamocil"; 25 }; 26}