Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
{ pkgs ? import <nixpkgs> {}}:
let
texpkgs = pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-small latexmk;
};
in
pkgs.stdenv.mkDerivation {
name = "mbd";
buildInputs = [
tex
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment