Read and write to /etc/hosts

TL;DR:
- Rename website-blocker to url-blocker
- Add a README.md
- Reads and writes to /etc/hosts
This commit is contained in:
William Carroll 2020-03-29 20:35:34 +01:00
parent 75595b0126
commit 946764f6bd
8 changed files with 182 additions and 25 deletions

View file

@ -0,0 +1,12 @@
let
pkgs = import <unstable> {};
in pkgs.mkShell {
buildInputs = with pkgs; [
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
time
aeson
either
hspec
]))
];
}