From a211782798426dbcecf6466f47309629a6546459 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 19 Jun 2025 15:33:10 -0400 Subject: refactor build fn in pkgs --- pkgs/default.nix | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/pkgs/default.nix b/pkgs/default.nix index 2ce9dac..98eb1ea 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,17 +1,5 @@ -{ - pkgs, - inputs, - system, - options, - ... -}: let - build = path: - pkgs.callPackage path { - inherit pkgs; - inherit inputs; - inherit system; - inherit options; - }; +{pkgs, ...} @ inputs: let + build = file: pkgs.callPackage file inputs; in { astal = build ./astal; unofficial-homestuck-collection = build ./unofficial-homestuck-collection; -- cgit v1.2.3-freya