default.nix 259 B

12345678910111213141516
  1. { nixpkgs ? import <nixpkgs>{} }:
  2. with nixpkgs;
  3. stdenv.mkDerivation rec {
  4. name = "cookbook";
  5. src = ./.;
  6. buildInputs = [ texlive.combined.scheme-full ];
  7. buildPhase = "make";
  8. # installPhase = ''
  9. # mkdir $out
  10. # cp document.pdf $out/
  11. # '';
  12. }