forked from hacc/haccfiles
stuebinm
12e4cba3e6
nix run .#\"<domain>\" will now actually listen for changes in the source repository, and not first copy the entire thing into the nix store.
20 lines
374 B
Nix
20 lines
374 B
Nix
{ stdenvNoCC, sfz, writeScriptBin }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
name = "muc.hacc.earth-static";
|
|
|
|
src = ./.;
|
|
|
|
phases = [ "buildPhase" ];
|
|
buildPhase = ''
|
|
cd $src
|
|
mkdir -p $out
|
|
cp -r * $out
|
|
rm $out/default.nix
|
|
'';
|
|
|
|
watch = writeScriptBin "watch" ''
|
|
cd $(git rev-parse --show-toplevel)/websites/muc.hacc.earth
|
|
${sfz}/bin/sfz "$@"
|
|
'';
|
|
}
|