c3d2-web/draft/latex/shell.nix
Sandro Jäckel 98d505f5c7
All checks were successful
continuous-integration/drone/push Build is passing
Add shell.nix, ignore latex temp files
2023-11-02 22:47:31 +01:00

12 lines
174 B
Nix

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