From 8c7f936851232b6c95ada1f809c7edbeafd7cafd Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 23 Jul 2020 00:37:25 +0200 Subject: [PATCH] shell.nix: unset SOURCE_DATE_EPOCH we require the current time. --- shell.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell.nix b/shell.nix index 412c2b35e..77f3bb8ce 100644 --- a/shell.nix +++ b/shell.nix @@ -14,4 +14,7 @@ stdenv.mkDerivation { rsync gnumake ]; + shellHook = '' + unset SOURCE_DATE_EPOCH + ''; }