feat: *seh2g-

This commit is contained in:
2020-12-30 18:59:47 +01:00
parent e4713936f6
commit a84f3812b2
2 changed files with 147 additions and 0 deletions

9
seh2g/shell.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
pkgs.libxml2 # for xmllint
(pkgs.writers.writeDashBin "serve" ''
${pkgs.python3}/bin/python3 -m http.server
'')
];
}