-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
dev-base.Brewfile
96 lines (79 loc) · 2.04 KB
/
dev-base.Brewfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# dev-base.Brewfile
#
# Maintained by Byungjin Park <[email protected]>
# https://www.posquit0.com/
cask_args appdir: '/Applications'
### CLI {{{
# Automatic configure script builder
brew 'autoconf'
# Tool for generating GNU Standards-compliant Makefiles
brew 'automake'
# Cross-platform make
brew 'cmake'
# GNU debugger
brew 'gdb'
# Curses-based tool for viewing and analyzing log files
brew 'lnav'
### }}}
### Programming Language {{{
## JSON & YAML
# Command-line JSON processor
brew 'jq'
# A portable command-line YAML, JSON and XML processor
brew 'yq'
# Linter for YAML files
brew 'yamllint'
## Node.js & Javascript
# Platform built on V8 to build network applications
# brew 'node'
# JavaScript toolchain manager for reproducible environments
brew 'volta'
# Secure runtime for JavaScript and TypeScript
brew 'deno'
## Python
# Python3
brew 'python'
# Python package management tool
brew 'poetry'
# Python dependency management tool
brew 'pipenv'
# Install and Run Python Applications in Isolated Environments
brew 'pipx'
## Golang
# Open source programming language to build simple/reliable/efficient software
brew 'go'
# Go cross compile tool
brew 'gox'
## Rust
# Safe, concurrent, practical language
brew 'rust'
## C Family
# GNU compiler collection
brew 'gcc'
## Ruby
# Powerful, clean, object-oriented scripting language
brew 'ruby'
# Ruby version manager
brew 'rbenv'
# Compile and install Ruby for rbenv
brew 'ruby-build'
## Shellscript
# Static analysis and lint tool, for (ba)sh scripts
brew 'shellcheck'
## Lua
# Powerful, lightweight programming language
brew 'lua'
# Just-In-Time Compiler (JIT) for the Lua programming language
brew 'luajit'
# Package manager for the Lua programming language
brew 'luarocks'
## Haskell
# Glorious Glasgow Haskell Compilation System
brew 'ghc'
### }}}
### Virtualization {{{
## Virtual Machine
# Oracle VirtualBox
# INFO: Need to enable their kernel extension
cask 'virtualbox'
### }}}