From e8d403b6974c41201a82cb8e2ea84095088c2f19 Mon Sep 17 00:00:00 2001 From: networkException Date: Tue, 12 Dec 2023 21:48:59 +0100 Subject: [PATCH 1/2] htmlq: set meta.mainProgram --- pkgs/development/tools/htmlq/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/tools/htmlq/default.nix b/pkgs/development/tools/htmlq/default.nix index 1adcaf954d04..6a5015c600fc 100644 --- a/pkgs/development/tools/htmlq/default.nix +++ b/pkgs/development/tools/htmlq/default.nix @@ -22,5 +22,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/mgdm/htmlq"; license = licenses.mit; maintainers = with maintainers; [ siraben nerdypepper ]; + mainProgram = "htmlq"; }; } From 1f06e081c92baffb0e159819fee1f1d6db3352da Mon Sep 17 00:00:00 2001 From: networkException Date: Tue, 12 Dec 2023 21:49:17 +0100 Subject: [PATCH 2/2] restic: set meta.mainProgram --- pkgs/tools/backup/restic/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/backup/restic/default.nix b/pkgs/tools/backup/restic/default.nix index a3223c04e297..72220f17d26e 100644 --- a/pkgs/tools/backup/restic/default.nix +++ b/pkgs/tools/backup/restic/default.nix @@ -48,5 +48,6 @@ buildGoModule rec { platforms = platforms.linux ++ platforms.darwin; license = licenses.bsd2; maintainers = [ maintainers.mbrgm maintainers.dotlambda ]; + mainProgram = "restic"; }; }