Created
October 5, 2020 21:19
-
-
Save steshaw/5ee72fd409e9cdc87deafb3e59096410 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let sources = import ./sources.nix; | |
in | |
{ pkgs ? import sources.nixpkgs { } | |
}: | |
/* | |
with | |
{ overlay = _: pkgs: | |
{ niv = import sources.niv {}; | |
}; | |
}; | |
*/ | |
with pkgs; | |
mkShell { | |
buildInputs = [ | |
gnumake | |
niv | |
(texlive.combine { | |
inherit (texlive) | |
scheme-medium | |
changepage | |
fontawesome | |
fontaxes | |
lastpage | |
libertine | |
moderncv | |
mweights | |
preprint | |
raleway | |
roboto | |
titlesec | |
; | |
}) | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment