about summary refs log tree commit diff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/static/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/web/static/default.nix b/web/static/default.nix
index 7a17dec362..ea498057f9 100644
--- a/web/static/default.nix
+++ b/web/static/default.nix
@@ -7,7 +7,12 @@ let
   logo = depot.web.tvl.logo;
 in lib.fix(self: pkgs.runCommand "tvl-static" {
   passthru = {
-    drvHash = lib.substring storeDirLength 32 self.drvPath;
+    # Preserving the string context here makes little sense: While we are
+    # referencing this derivation, we are not doing so via the nix store,
+    # so it makes little sense for Nix to police the references.
+    drvHash = builtins.unsafeDiscardStringContext (
+      lib.substring storeDirLength 32 self.drvPath
+    );
   };
 } ''
   mkdir $out