Add a nix expression for building the resume.

This commit is contained in:
2023-02-19 20:06:47 -08:00
parent c0fdf37da9
commit 2d5098909c
3 changed files with 39 additions and 0 deletions

10
package.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, sass ? pkgs.sassc, chromium ? pkgs.ungoogled-chromium }:
pkgs.stdenv.mkDerivation {
name = "daniel-resume";
version = "0.1";
builder = ./build.sh;
buildInputs = [ sass chromium ];
src = ./.;
FONTCONFIG_FILE = pkgs.makeFontsConf { fontDirectories = []; };
}