nandi/nimfetchpublic Fork 0
main
Commits
Clone
git clone https://git.rickub.com/nandi/nimfetch.git
git clone ssh://git@rickub.com/nandi/nimfetch.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Initial nimfetch implementation e6e2cdc · on main · nandithebull · 4h ago
nimfetch.nimble · 14 lines · 510 BGDScript3 Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
version       = "0.1.0"
author        = "nimfetch contributors"
description   = "A fast, dependency-free system information tool written in Nim"
license       = "MIT"
srcDir        = "src"
bin           = @["nimfetch"]

requires "nim >= 2.0.0"

task test, "Run the test suite":
  exec "nim c -r --nimcache:/tmp/nimfetch-tests --path:src tests/test_nimfetch.nim"

task release, "Build an optimized binary":
  exec "nim c -d:release --opt:speed --nimcache:/tmp/nimfetch-release -o:bin/nimfetch src/nimfetch.nim"