an offline-capable xkcd webcomic reader written in Go (wip)
Go to file
surtur f0462b777b
readme: add instructions on how to build project
includes building using:
* nix flake functionality ('nix develop'+the go tool provided by nix)
* just the go tool
2022-04-26 14:52:34 +02:00
LICENSE initial commit 2022-03-12 10:29:25 +01:00
README.md readme: add instructions on how to build project 2022-04-26 14:52:34 +02:00
flake.lock initial commit 2022-03-12 10:29:25 +01:00
flake.nix flake: fix support for Nix 2.8 and beyond 2022-04-26 13:51:11 +02:00
go.mod initial commit 2022-03-12 10:29:25 +01:00
main.go initial commit 2022-03-12 10:29:25 +01:00

go-xkcdreader

an offline-capable xkcd webcomic reader written in Go

disclaimer

WIP 🚧

ad nix flake ❄

this project is provided as a nix flake for both convenience and reproducibility.
and also because I wanted to play with nix and its flakes just a wee bit.

note on the nix-related steps: make sure you have nix installed and optionally the flake functionality enabled, the Go toolchain and a minimal set of Go development goodies will get pulled in automatically.

that means you can get started:

developing using nix (flakes enabled)

run nix develop in the project folder first, then go {run,build,fmt,...} about your day.

developing without nix

note: you only need to have the Go toolchain and Fyne dependencies installed for this.

if you don't want to use the flake provided or don't have nix installed, you can use the standard go tool: run go {run,build,fmt,...} in the project folder.

COPYING

Licensed under GPL-3.0-or-later (see LICENSE for details).