aboutsummaryrefslogtreecommitdiffstats
path: root/shell.nix
blob: d1bb039264f6e9e18ccd040ab5e10f0d240b31e4 (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 '( set -e; cd $(nix-build --no-out-link); python -m http.server )'
    '')
  ];
}