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