Browse Source

Start switching to naming specifically require packages

Samuel W. Flint 4 years ago
parent
commit
8a0a97da8a
1 changed files with 21 additions and 1 deletions
  1. 21 1
      default.nix

+ 21 - 1
default.nix

@@ -5,7 +5,27 @@ with nixpkgs;
 stdenv.mkDerivation rec {
   name = "cookbook";
   src =  ./.;
-  buildInputs = [ texlive.combined.scheme-full ];
+  buildInputs = [
+    git
+    (texlive.combine {
+      inherit (texlive)
+        scheme-small
+        latexmk
+        ifmtarg
+        booktabs
+        units
+        changepage
+        hyperxmp
+        doclicense
+        xifthen
+        etoolbox
+        mfirstuc
+        datatool
+        glossaries
+        textcase
+      ;
+    })
+  ];
 
   buildPhase = "make";