A CLI tool to edit dinit service files with ease
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add build.ninja

iacore 560eabf4 d644d08c

+11 -12
-5
Makefile
··· 1 - main: main.zig 2 - zig build-exe -O ReleaseSafe main.zig 3 - 4 - # install: main 5 - # install main
+8
build.ninja
··· 1 + rule zig-exe 2 + command = zig build-exe -O ReleaseSafe $in 3 + 4 + rule go 5 + command = go build $in 6 + 7 + #build dinit-edit: zig-exe main.zig 8 + build dinit-edit: go dinit-edit.go
+3 -7
readme.md
··· 14 14 ## Buliding Go implementation 15 15 16 16 ``` 17 - go build dinit-edit.go 17 + ninja 18 18 ``` 19 19 20 20 ## Building Zig implementatino 21 21 22 - Use Zig 0.14.1 23 - 24 - ``` 25 - make 26 - install ./main <somewhere> 27 - ``` 22 + Development using Zig 0.14.1. Zig is not easy to read. 28 23 24 + See build.ninja for how to build.