From: Maxwell Beck Date: Fri, 26 Jan 2024 00:05:29 +0000 (-0600) Subject: Update context-lmtx-flake X-Git-Url: https://rastertail.net/scm/?a=commitdiff_plain;h=3a455ba20ce99028829689ad35bc276b21d8b5e9;p=resume.git Update context-lmtx-flake --- diff --git a/flake.lock b/flake.lock index 7788eea..864180a 100644 --- a/flake.lock +++ b/flake.lock @@ -1,16 +1,12 @@ { "nodes": { "context": { - "inputs": { - "flake-utils": "flake-utils", - "nixpkgs": "nixpkgs" - }, "locked": { - "lastModified": 1705275064, - "narHash": "sha256-C3qX/TX04yk7/wZoWFU7Qpd7raOv8glmpj1uq27dpG0=", + "lastModified": 1706227439, + "narHash": "sha256-WQJnbMjqAvIoUS2hoWyoXO26h6BfWtzoAHYy7HlnkTs=", "owner": "~rastertail", "repo": "context-lmtx-flake", - "rev": "8e6eaed862447cfc824be4725e68edbafcfd0ae0", + "rev": "b0ac9e0f7990edf0a12575927915b533c86858a1", "type": "sourcehut" }, "original": { @@ -24,29 +20,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1701680307, - "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", "owner": "numtide", "repo": "flake-utils", - "rev": "4022d587cbbfd70fe950c1e2083a02621806a725", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "flake-utils_2": { - "inputs": { - "systems": "systems_2" - }, - "locked": { - "lastModified": 1701680307, - "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "4022d587cbbfd70fe950c1e2083a02621806a725", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { @@ -57,27 +35,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1704842529, - "narHash": "sha256-OTeQA+F8d/Evad33JMfuXC89VMetQbsU4qcaePchGr4=", + "lastModified": 1706006310, + "narHash": "sha256-nDPz0fj0IFcDhSTlXBU2aixcnGs2Jm4Zcuoj0QtmiXQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "eabe8d3eface69f5bb16c18f8662a702f50c20d5", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_2": { - "locked": { - "lastModified": 1705242415, - "narHash": "sha256-a8DRYrNrzTudvO7XHUPNJD89Wbf1ZZT0VbwCsPnHWaE=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "ea780f3de2d169f982564128804841500e85e373", + "rev": "b43bb235efeab5324c5e486882ef46749188eee2", "type": "github" }, "original": { @@ -90,8 +52,8 @@ "root": { "inputs": { "context": "context", - "flake-utils": "flake-utils_2", - "nixpkgs": "nixpkgs_2" + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" } }, "systems": { @@ -108,21 +70,6 @@ "repo": "default", "type": "github" } - }, - "systems_2": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 8627e23..6f2ca01 100644 --- a/flake.nix +++ b/flake.nix @@ -9,19 +9,15 @@ flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; + overlays = [ context.overlays.default ]; }; in { packages.default = pkgs.stdenv.mkDerivation { name = "resume"; src = ./.; - nativeBuildInputs = [ context.packages.${system}.context ]; - OSFONTDIR = "${pkgs.crimson-pro}/share/fonts"; + nativeBuildInputs = [ (pkgs.context.override { extraFonts = [ pkgs.crimson-pro ]; }) ]; - configurePhase = '' - mtxrun --generate - mtxrun --script fonts --reload - ''; buildPhase = "context resume"; installPhase = "cp resume.pdf $out"; };