http://pkgs.tgirl.cloud/
1{
2 nix-update,
3 mkShellNoCC,
4 nixfmt-tree,
5 simple-http-server,
6 writeShellApplication,
7}:
8mkShellNoCC {
9 packages = [
10 nix-update
11 nixfmt-tree
12
13 (writeShellApplication {
14 name = "docs";
15 runtimeInputs = [ simple-http-server ];
16
17 text = ''
18 nix build -L .#tgirlpkgs-docs
19
20 simple-http-server -i result
21 '';
22 })
23 ];
24}