mirror of
https://github.com/rikhuijzer/test-caching.git
synced 2024-11-29 08:33:58 +03:00
12 lines
186 B
Nix
12 lines
186 B
Nix
{ nixpkgs ? import <nixpkgs> {} }:
|
|
|
|
let
|
|
inherit (nixpkgs) pkgs;
|
|
myTex = with pkgs; texlive.combine {
|
|
inherit (texlive) scheme-small dvisvgm;
|
|
};
|
|
in [
|
|
# myTex
|
|
pkgs.xdotool
|
|
]
|