28 lines
552 B
Nix
28 lines
552 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.texlive.enable = true;
|
||
|
|
||
|
# Set up a minimal mocked texlive package set.
|
||
|
nixpkgs.overlays = [
|
||
|
(self: super: {
|
||
|
texlive = {
|
||
|
collection-basic = pkgs.writeTextDir "collection-basic" "";
|
||
|
combine = tpkgs:
|
||
|
pkgs.symlinkJoin {
|
||
|
name = "dummy-texlive-combine";
|
||
|
paths = attrValues tpkgs;
|
||
|
};
|
||
|
};
|
||
|
})
|
||
|
];
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-path/collection-basic
|
||
|
'';
|
||
|
};
|
||
|
}
|