Explorar o código

Start switching to naming specifically require packages

Samuel W. Flint %!s(int64=4) %!d(string=hai) anos
pai
achega
8a0a97da8a
Modificáronse 1 ficheiros con 21 adicións e 1 borrados
  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";