openvi: misc improvement

This commit is contained in:
Weijia Wang 2023-05-05 18:36:04 +03:00
parent 469bda7c95
commit de7a352fb2

View file

@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
makeFlags = [ makeFlags = [
"PREFIX=$(out)" "PREFIX=$(out)"
# command -p will yield command not found erorr # command -p will yield command not found error
"PAWK=awk" "PAWK=awk"
# silently fail the chown command # silently fail the chown command
"IUSGR=$(USER)" "IUSGR=$(USER)"
@ -42,5 +42,6 @@ stdenv.mkDerivation rec {
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ aleksana ]; maintainers = with maintainers; [ aleksana ];
mainProgram = "ovi";
}; };
} }