From 87d8234c214044488eff1c79a6a6af8874038af3 Mon Sep 17 00:00:00 2001 From: Raphael Robatsch Date: Wed, 13 Dec 2023 13:12:09 +0100 Subject: [PATCH 1/3] python3Packages.alembic: set meta.mainProgram --- pkgs/development/python-modules/alembic/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/alembic/default.nix b/pkgs/development/python-modules/alembic/default.nix index c1bb0f1d3c7d..36a6bb79bc27 100644 --- a/pkgs/development/python-modules/alembic/default.nix +++ b/pkgs/development/python-modules/alembic/default.nix @@ -47,5 +47,6 @@ buildPythonPackage rec { description = "A database migration tool for SQLAlchemy"; license = licenses.mit; maintainers = with maintainers; [ ]; + mainProgram = "alembic"; }; } From d36a18614494b57e7fdf6785c886d02bc5e1245b Mon Sep 17 00:00:00 2001 From: Raphael Robatsch Date: Wed, 13 Dec 2023 13:12:47 +0100 Subject: [PATCH 2/3] python3Packages.gunicorn: set meta.mainProgram --- pkgs/development/python-modules/gunicorn/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/gunicorn/default.nix b/pkgs/development/python-modules/gunicorn/default.nix index 23bfaae0d2bd..9a425be27878 100644 --- a/pkgs/development/python-modules/gunicorn/default.nix +++ b/pkgs/development/python-modules/gunicorn/default.nix @@ -43,5 +43,6 @@ buildPythonPackage rec { description = "gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications"; license = licenses.mit; maintainers = with maintainers; [ ]; + mainProgram = "gunicorn"; }; } From 6c0a0318dc632ed475d4cbb08de3b11190bd0233 Mon Sep 17 00:00:00 2001 From: Raphael Robatsch Date: Wed, 13 Dec 2023 13:13:43 +0100 Subject: [PATCH 3/3] chroma: set meta.mainProgram --- pkgs/tools/text/chroma/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/text/chroma/default.nix b/pkgs/tools/text/chroma/default.nix index af5241de7a05..2b59831529db 100644 --- a/pkgs/tools/text/chroma/default.nix +++ b/pkgs/tools/text/chroma/default.nix @@ -33,5 +33,6 @@ buildGoModule rec { description = "A general purpose syntax highlighter in pure Go"; license = licenses.mit; maintainers = [ maintainers.sternenseemann ]; + mainProgram = "chroma"; }; }