This can be used for easy cachebusting of static assets, so that we can serve them all with a really long cache-time easily. Change-Id: I7c9f6beddec58e1caf02cda33bc587590217a939 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3660 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
12 lines
375 B
Nix
12 lines
375 B
Nix
# Expose all static assets as a folder. The derivation contains a
|
|
# `drvHash` attribute which can be used for cache-busting.
|
|
{ depot, lib, pkgs, ... }:
|
|
|
|
let storeDirLength = with builtins; (stringLength storeDir) + 1;
|
|
in lib.fix(self: pkgs.runCommand "tvl-static" {
|
|
passthru = {
|
|
drvHash = lib.substring storeDirLength 32 self.drvPath;
|
|
};
|
|
} ''
|
|
cp -r ${./.} $out
|
|
'')
|