hugs: fix meta.mainProgram

this allos lib.getExe to work as expected, e.g. in uses of `nix run ...`
(currently it fails since the binary is `hugs`, but the package `hugs98`)
This commit is contained in:
stuebinm 2023-10-07 21:18:48 +02:00 committed by Yaya
parent 0e79eaf4a5
commit 0fc6faf92b

View File

@ -41,6 +41,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
broken = stdenv.isDarwin;
mainProgram = "hugs";
homepage = "https://www.haskell.org/hugs";
description = "Haskell interpreter";
maintainers = with maintainers; [ joachifm ];