diff options
Diffstat (limited to 'nix/build.nix')
| -rw-r--r-- | nix/build.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nix/build.nix b/nix/build.nix new file mode 100644 index 0000000..0844618 --- /dev/null +++ b/nix/build.nix @@ -0,0 +1,10 @@ +{ runCommand, buildAssets, ... }: +runCommand "www-assets" { + nativeBuildInputs = [ + buildAssets + ]; +} '' + mkdir -p $out/{css,logos,favicon} + + +'' |
