From b6b55a99c1ef7a8e183420c93b664d7795ec6d01 Mon Sep 17 00:00:00 2001 From: Jordan Williams Date: Tue, 12 Nov 2024 11:21:11 -0600 Subject: [PATCH] fcast-client: correct mainProgram The actual executable program is `fcast`, not `fcast-client`. --- pkgs/by-name/fc/fcast-client/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/fc/fcast-client/package.nix b/pkgs/by-name/fc/fcast-client/package.nix index 9f9277fed327..bd6cb675a3f4 100644 --- a/pkgs/by-name/fc/fcast-client/package.nix +++ b/pkgs/by-name/fc/fcast-client/package.nix @@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec { implementations, enabling third-party developers to create their own receiver devices or integrate the FCast protocol into their own apps. ''; - mainProgram = "fcast-client"; + mainProgram = "fcast"; maintainers = with lib.maintainers; [ drupol ]; platforms = lib.platforms.linux; };