M README.md => README.md +1 -1
@@ 2,6 2,6 @@
The statically-generated source for [samhh.com](https://samhh.com).
-Currently building against Hugo 0.89.
+Currently building against Hugo 0.92.
A patch is applied against openring to support RSS date formats not to spec.
A shell.nix => shell.nix +12 -0
@@ 0,0 1,12 @@
+let
+ pkgs = import <nixpkgs> {};
+
+in
+ pkgs.mkShell rec {
+ buildInputs = with pkgs; [
+ git
+ gnumake
+ hugo
+ openring
+ ];
+ }