From 4e4f86fbccfc6c2bfe0dbd1219048b245f9712f6 Mon Sep 17 00:00:00 2001 From: Nora Breitmoser-Widdecke Date: Tue, 23 Jan 2024 14:01:07 +0100 Subject: [PATCH] protege-distribution: set meta.mainProgram Make `nix run nixpkgs#protege-distribution` work even though the binary is named `run-protege`. --- pkgs/development/web/protege-distribution/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/web/protege-distribution/default.nix b/pkgs/development/web/protege-distribution/default.nix index 3051c80f473b..b82f45692ee1 100644 --- a/pkgs/development/web/protege-distribution/default.nix +++ b/pkgs/development/web/protege-distribution/default.nix @@ -78,5 +78,6 @@ stdenv.mkDerivation rec { maintainers = with maintainers; [ nessdoor ]; license = with licenses; [ asl20 bsd2 epl10 lgpl3 ]; platforms = platforms.linux; + mainProgram = "run-protege"; }; }