Add shell.nix, ignore latex temp files
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Sandro - 2023-11-02 22:47:31 +01:00
parent e00d9f5d55
commit 98d505f5c7
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 13 additions and 0 deletions

2
draft/latex/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.aux
*.out

11
draft/latex/shell.nix Normal file
View File

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