protege-distribution: set meta.mainProgram

Make `nix run nixpkgs#protege-distribution` work even though the binary is named `run-protege`.
This commit is contained in:
Nora Breitmoser-Widdecke 2024-01-23 14:01:07 +01:00 committed by Matthieu Coudron
parent a899ba979e
commit 4e4f86fbcc

View file

@ -78,5 +78,6 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ nessdoor ]; maintainers = with maintainers; [ nessdoor ];
license = with licenses; [ asl20 bsd2 epl10 lgpl3 ]; license = with licenses; [ asl20 bsd2 epl10 lgpl3 ];
platforms = platforms.linux; platforms = platforms.linux;
mainProgram = "run-protege";
}; };
} }