mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 07:29:23 +08:00
13 lines
255 B
Nix
13 lines
255 B
Nix
{ stdenv, src, }: stdenv.mkDerivation
|
|
{
|
|
name = "speedtest";
|
|
inherit src;
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
installPhase =
|
|
''
|
|
mkdir -p $out
|
|
cp -r $src/{index.html,speedtest.js,speedtest_worker.js,favicon.ico,backend} $out
|
|
'';
|
|
}
|