Skip to content

Commit

Permalink
uniqs: 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simnalamburt committed Jun 14, 2023
1 parent 961db9a commit cf677bf
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Formula/uniqs.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
class Uniqs < Formula
desc "uniq(1) alternative with streaming support"
homepage "https://github.com/simnalamburt/uniqs"
url "https://github.com/simnalamburt/uniqs/archive/v0.1.0.tar.gz"
sha256 "cf2e4768d3d558d8f5f26cdd28dd654b8699d9b7718ba7339f3b86ef97683d88"
license "Apache-2.0 OR MIT"

bottle do
root_url "https://github.com/simnalamburt/homebrew-x/releases/download/uniqs-0.1.0"
sha256 cellar: :any_skip_relocation, arm64_ventura: "01c6029435ecb21b3c33add3442a59a7d37926ee929689c8a2dcd29b3f322bc7"
end

depends_on "rust" => :build

def install
system "cargo", "install", *std_cargo_args
end
end
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
My macOS packages
========
### [uniqs](https://github.com/simnalamburt/uniqs)
uniq(1) alternative with streaming support.
```bash
brew install simnalamburt/x/uniqs
```

### [elb-log-parser](https://github.com/simnalamburt/elb-log-parser)
Simple AWS ELB log parser which parses Classic LB and ALB logs into JSONs.
```bash
Expand Down

0 comments on commit cf677bf

Please sign in to comment.