blob: ed6c87381ad23a3e5a5ffc8d20869314a85aa1ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
loldns
======
loldns is a toy DNS server.
Dependencies
------------
- [Nix](http://nixos.org/nix/)
- [cabal2nix](https://github.com/NixOS/cabal2nix)
- [GNU Make](https://www.gnu.org/software/make/) :)
# Run DNS server
make result
result/bin/loldns test.conf test.db
# Run DNS server in GHCi
make ghci
:l loldns
withArgs ["test.conf","test.db"] main
|