69ed4984e3
Change-Id: Ie5ee4fe9d137cde9502ded1558fae3ad685b8863 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3661 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
17 lines
509 B
Nix
17 lines
509 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;
|
|
logo = depot.web.tvl.logo;
|
|
in lib.fix(self: pkgs.runCommand "tvl-static" {
|
|
passthru = {
|
|
drvHash = lib.substring storeDirLength 32 self.drvPath;
|
|
};
|
|
} ''
|
|
mkdir $out
|
|
cp -r ${./.}/* $out
|
|
cp ${logo.pastelRainbow} $out/logo-animated.svg
|
|
cp ${logo.redPng} $out/logo-red.png
|
|
'')
|