~andir/nixpkgs-dev

hoogle: set the host to bind on v1 PROPOSED

Ben Sima: 1
 hoogle: set the host to bind on

 1 files changed, 6 insertions(+), 1 deletions(-)
Merged as https://github.com/NixOS/nixpkgs/commit/f41f0643f851ce2454958802a21bc48fdd463012
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~andir/nixpkgs-dev/patches/16224/mbox | git am -3
Learn more about email & git

[PATCH] hoogle: set the host to bind on Export this patch

---
 nixos/modules/services/development/hoogle.nix | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/nixos/modules/services/development/hoogle.nix b/nixos/modules/services/development/hoogle.nix
index cbf13f027de..a661e3acae3 100644
--- a/nixos/modules/services/development/hoogle.nix
+++ b/nixos/modules/services/development/hoogle.nix
@@ -49,6 +49,11 @@ in {
      default = "https://hoogle.haskell.org";
    };

    host = mkOption {
      type = types.str;
      description = "Set the host to bind on.";
      default = "127.0.0.1";
    };
  };

  config = mkIf cfg.enable {
@@ -59,7 +64,7 @@ in {

      serviceConfig = {
        Restart = "always";
        ExecStart = ''${hoogleEnv}/bin/hoogle server --local --port ${toString cfg.port} --home ${cfg.home}'';
        ExecStart = ''${hoogleEnv}/bin/hoogle server --local --port ${toString cfg.port} --home ${cfg.home} --host ${cfg.host}'';

        DynamicUser = true;

-- 
2.28.0
Thanks, forwarded as https://github.com/NixOS/nixpkgs/pull/107936