generated from stubbfel/nix-project-template
8 lines
212 B
Nix
8 lines
212 B
Nix
{ config ? import ../../config { } }:
|
|
|
|
config.nixpkgs.writeScript "python-example-web-server" ''
|
|
#! /usr/bin/env sh
|
|
|
|
${config.nixpkgs.python3}/bin/python -m http.server ${config.playground.port}
|
|
''
|