Sandro Jäckel
98d505f5c7
All checks were successful
continuous-integration/drone/push Build is passing
12 lines
174 B
Nix
12 lines
174 B
Nix
with import <nixpkgs> {};
|
|
|
|
stdenv.mkDerivation {
|
|
name = "env";
|
|
buildInputs = [
|
|
texlive.combined.scheme-full
|
|
];
|
|
shellHook = ''
|
|
unset SOURCE_DATE_EPOCH
|
|
'';
|
|
}
|