about summary refs log tree commit diff
path: root/pkgs/applications/editors/bluej/default.nix
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-12-20 03:45:17 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-12-20 14:25:55 +0100
commit15cf1bacec81d3905d40b8005f88bb3ad8dc5a56 (patch)
tree77989027c855c7223d29324e81f61c5e3bd8eea3 /pkgs/applications/editors/bluej/default.nix
parent42841c10e5967007541bbf23423b216882923940 (diff)
treewide: don't use pname for mainProgram where pname is static
Diffstat (limited to 'pkgs/applications/editors/bluej/default.nix')
-rw-r--r--pkgs/applications/editors/bluej/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/bluej/default.nix b/pkgs/applications/editors/bluej/default.nix
index a90cfba529fb6..32dc84f33a699 100644
--- a/pkgs/applications/editors/bluej/default.nix
+++ b/pkgs/applications/editors/bluej/default.nix
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
     homepage = "https://www.bluej.org/";
     sourceProvenance = with sourceTypes; [ binaryBytecode ];
     license = licenses.gpl2ClasspathPlus;
-    mainProgram = pname;
+    mainProgram = "bluej";
     maintainers = with maintainers; [ chvp ];
     platforms = platforms.linux;
   };