From 2233ed700b7655cdde8b5ccaa515fccbfbc7071e Mon Sep 17 00:00:00 2001 From: stuebinm Date: Mon, 11 Mar 2024 22:53:08 +0100 Subject: [PATCH] gauche: set meta.mainProgram to gosh This package provides multiple binaries, but `gosh' is the interpreter which is actually used to run scheme scripts, and so probably the one people think of when they say "running Gauche Scheme". --- pkgs/development/interpreters/gauche/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/interpreters/gauche/default.nix b/pkgs/development/interpreters/gauche/default.nix index 301cd9db7830..aa58be639b9d 100644 --- a/pkgs/development/interpreters/gauche/default.nix +++ b/pkgs/development/interpreters/gauche/default.nix @@ -42,6 +42,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "R7RS Scheme scripting engine"; homepage = "https://practical-scheme.net/gauche/"; + mainProgram = "gosh"; maintainers = with maintainers; [ mnacamura ]; license = licenses.bsd3; platforms = platforms.unix;