Files
to-hen/seh2g/shell.nix

10 lines
213 B
Nix
Raw Normal View History

2020-12-30 18:59:47 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
pkgs.libxml2 # for xmllint
(pkgs.writers.writeDashBin "serve" ''
${pkgs.python3}/bin/python3 -m http.server
'')
];
}