From 027beb8acbbc46ff38f1b25944079154c28fe7da Mon Sep 17 00:00:00 2001 From: Greg Shuflin Date: Sat, 8 Apr 2023 18:19:24 -0700 Subject: [PATCH] Update to latest nixpkgs And use newest typst behavior to build --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 5c858a9..c66c117 100644 --- a/default.nix +++ b/default.nix @@ -1,4 +1,4 @@ -{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/5f9d1bb572e08ec432ae46c78581919d837a90f6.tar.gz") {}}: +{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/0e19daa510e47a40e06257e205965f3b96ce0ac9.tar.gz") {}}: let stdenv = pkgs.stdenv; gitignoreSrc = pkgs.fetchFromGitHub { @@ -18,7 +18,7 @@ in stdenv.mkDerivation { src = ./.; buildPhase = '' - typst resume.typ "${resumeFilename}" + typst compile resume.typ "${resumeFilename}" ''; installPhase = ''