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-08 23:55:19 +02:00
committed by Yaya
parent 0e79eaf4a5
commit 0fc6faf92b
@@ -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 ];