From de7a352fb2c4fd12e404ba4075f85d1e1c4bac9f Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 5 May 2023 18:36:04 +0300 Subject: [PATCH] openvi: misc improvement --- pkgs/applications/editors/openvi/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/openvi/default.nix b/pkgs/applications/editors/openvi/default.nix index 43c4d892726..e104c4dd759 100644 --- a/pkgs/applications/editors/openvi/default.nix +++ b/pkgs/applications/editors/openvi/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" - # command -p will yield command not found erorr + # command -p will yield command not found error "PAWK=awk" # silently fail the chown command "IUSGR=$(USER)" @@ -42,5 +42,6 @@ stdenv.mkDerivation rec { license = licenses.bsd3; platforms = platforms.unix; maintainers = with maintainers; [ aleksana ]; + mainProgram = "ovi"; }; }