c3d2-web/draft/latex/shell.nix

12 lines
174 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
buildInputs = [
texlive.combined.scheme-full
];
shellHook = ''
unset SOURCE_DATE_EPOCH
'';
}