From 0cb746a743d36d423ba413f72808d990e756950d Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 20 Oct 2025 13:28:20 +0000 Subject: [PATCH] delta: set wrapper's 'meta' Notably, this will set `meta.mainProgram`. --- modules/programs/delta.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/programs/delta.nix b/modules/programs/delta.nix index b453807a..c5f89c7c 100644 --- a/modules/programs/delta.nix +++ b/modules/programs/delta.nix @@ -79,6 +79,7 @@ in wrapProgram $out/bin/delta \ --add-flags "--config ${configFile}" ''; + inherit (cfg.package) meta; }; in if !cfg.enableGitIntegration && cfg.options != { } then wrappedDelta else cfg.package;