phd-thesis-en/default.nix

53 lines
865 B
Nix
Raw Normal View History

2023-04-22 10:15:09 +02:00
{pkgs}:
with pkgs;
2017-07-08 17:42:46 +02:00
# My thesis-specific tools and utilities
stdenv.mkDerivation {
name = "thesis-bundle";
buildInputs = [
( texlive.combine {
inherit (texlive)
scheme-basic
collection-langfrench
algorithm2e
biblatex
caption
enumitem
euenc
filehook
2023-04-22 10:15:09 +02:00
ifoddpage
2017-07-08 17:42:46 +02:00
jknapltx
listings
logreq
metafont
minitoc
ms
multirow
pgf
pgfplots
placeins
polyglossia
relsize
rsfs
setspace
siunitx
standalone
ucharcat
unicode-math
xcolor
xetex
xkeyval
xstring
zapfding
;} )
biber
2023-04-22 10:15:09 +02:00
(import ./builderbot {inherit pkgs;})
2017-07-08 17:42:46 +02:00
];
src=null;
shellHook = ''
mkdir -p /tmp/build-thesis
echo "Juste type 'buildthesis' to build the thesis"
'';
}