generated from stubbfel/nix-project-template
6 lines
188 B
Nix
6 lines
188 B
Nix
{ config ? import ../../config { } }:
|
|
|
|
config.nixpkgs.writeScript "python-example-web-server" ''
|
|
${config.nixpkgs.python3}/bin/python -m http.server ${config.playground.port}
|
|
''
|