Jelajahi Sumber

Start switching to naming specifically require packages

Samuel W. Flint 4 tahun lalu
induk
melakukan
8a0a97da8a
1 mengubah file dengan 21 tambahan dan 1 penghapusan
  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";