about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAleksana <me@aleksana.moe>2024-07-12 09:57:50 +0800
committerGitHub <noreply@github.com>2024-07-12 09:57:50 +0800
commit00d6a4970b2586e1af4daf33b3e9f1c687c5d841 (patch)
treecad2fcc0ee0d3bf53d4cc32d6aae7743fcc9c279
parent0cb73db09216e6fdb4ae71378ac3ee001fd7493c (diff)
parentf6385867612f5abd3e156bcca56af9681614e11f (diff)
Merge pull request #325381 from jeremyschlatter/go-ethereum_mainProgram_geth
go-ethereum: set `meta.mainProgram = "geth"`
-rw-r--r--pkgs/by-name/go/go-ethereum/package.nix (renamed from pkgs/applications/blockchains/go-ethereum/default.nix)1
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/blockchains/go-ethereum/default.nix b/pkgs/by-name/go/go-ethereum/package.nix
index adf818a52ffd8..ec40f92fab374 100644
--- a/pkgs/applications/blockchains/go-ethereum/default.nix
+++ b/pkgs/by-name/go/go-ethereum/package.nix
@@ -60,5 +60,6 @@ in buildGoModule rec {
     description = "Official golang implementation of the Ethereum protocol";
     license = with licenses; [ lgpl3Plus gpl3Plus ];
     maintainers = with maintainers; [ RaghavSood ];
+    mainProgram = "geth";
   };
 }
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 722792b76cc6f..046a6cb886242 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -35661,7 +35661,7 @@ with pkgs;
 
   fulcrum = libsForQt5.callPackage ../applications/blockchains/fulcrum { };
 
-  go-ethereum = callPackage ../applications/blockchains/go-ethereum {
+  go-ethereum = callPackage ../by-name/go/go-ethereum/package.nix {
     inherit (darwin) libobjc;
     inherit (darwin.apple_sdk.frameworks) IOKit;
   };