aboutsummaryrefslogtreecommitdiffstats
path: root/shell.nix
blob: 3d46a11e0ea34658144ad0382791bcc5bf2c46da (plain)
1
2
3
4
5
6
7
8
9
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
  buildInputs = [
    (pkgs.writers.writeDashBin "develop" ''
      set -efu
      find src | entr -rs '( cd $(nix-build --no-out-link -A nomath-website) && python -m http.server )'
    '')
  ];
}