2016-04-12 22:31:47 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.hoogle;
|
2016-04-22 02:28:29 +02:00
|
|
|
|
|
|
|
hoogleEnv = pkgs.buildEnv {
|
|
|
|
name = "hoogle";
|
|
|
|
paths = [ (cfg.haskellPackages.ghcWithHoogle cfg.packages) ];
|
|
|
|
};
|
2016-04-12 22:31:47 +02:00
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
options.services.hoogle = {
|
2024-04-13 14:54:15 +02:00
|
|
|
enable = mkEnableOption "Haskell documentation server";
|
2016-04-12 22:31:47 +02:00
|
|
|
|
|
|
|
port = mkOption {
|
2021-08-01 13:09:26 +02:00
|
|
|
type = types.port;
|
2016-04-12 22:31:47 +02:00
|
|
|
default = 8080;
|
2024-04-13 14:54:15 +02:00
|
|
|
description = ''
|
2016-04-12 22:31:47 +02:00
|
|
|
Port number Hoogle will be listening to.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
packages = mkOption {
|
2018-08-07 18:53:56 +02:00
|
|
|
type = types.functionTo (types.listOf types.package);
|
2016-04-12 22:31:47 +02:00
|
|
|
default = hp: [];
|
2021-10-03 18:06:03 +02:00
|
|
|
defaultText = literalExpression "hp: []";
|
|
|
|
example = literalExpression "hp: with hp; [ text lens ]";
|
2024-04-13 14:54:15 +02:00
|
|
|
description = ''
|
2016-04-22 02:28:29 +02:00
|
|
|
The Haskell packages to generate documentation for.
|
2016-04-12 22:31:47 +02:00
|
|
|
|
2016-04-22 02:28:29 +02:00
|
|
|
The option value is a function that takes the package set specified in
|
|
|
|
the {var}`haskellPackages` option as its sole parameter and
|
|
|
|
returns a list of packages.
|
2016-04-12 22:31:47 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
haskellPackages = mkOption {
|
2024-04-13 14:54:15 +02:00
|
|
|
description = "Which haskell package set to use.";
|
2021-12-07 18:36:01 +01:00
|
|
|
type = types.attrs;
|
2016-04-22 02:28:29 +02:00
|
|
|
default = pkgs.haskellPackages;
|
2021-10-03 18:06:03 +02:00
|
|
|
defaultText = literalExpression "pkgs.haskellPackages";
|
2016-04-12 22:31:47 +02:00
|
|
|
};
|
|
|
|
|
2018-07-30 12:27:07 +02:00
|
|
|
home = mkOption {
|
|
|
|
type = types.str;
|
2024-04-13 14:54:15 +02:00
|
|
|
description = "Url for hoogle logo";
|
2018-07-30 12:27:07 +02:00
|
|
|
default = "https://hoogle.haskell.org";
|
|
|
|
};
|
|
|
|
|
2020-12-30 04:20:48 +01:00
|
|
|
host = mkOption {
|
|
|
|
type = types.str;
|
2024-04-13 14:54:15 +02:00
|
|
|
description = "Set the host to bind on.";
|
2020-12-30 04:20:48 +01:00
|
|
|
default = "127.0.0.1";
|
|
|
|
};
|
2024-03-07 04:12:41 +01:00
|
|
|
|
|
|
|
extraOptions = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
example = [ "--no-security-headers" ];
|
2024-04-13 14:54:15 +02:00
|
|
|
description = ''
|
2024-03-07 04:12:41 +01:00
|
|
|
Additional command-line arguments to pass to
|
|
|
|
{command}`hoogle server`
|
|
|
|
'';
|
|
|
|
};
|
2016-04-12 22:31:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.hoogle = {
|
2016-04-22 02:28:29 +02:00
|
|
|
description = "Haskell documentation server";
|
|
|
|
|
2016-04-12 22:31:47 +02:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2016-04-22 02:28:29 +02:00
|
|
|
|
2016-04-12 22:31:47 +02:00
|
|
|
serviceConfig = {
|
|
|
|
Restart = "always";
|
2024-03-07 04:12:41 +01:00
|
|
|
ExecStart = ''
|
|
|
|
${hoogleEnv}/bin/hoogle server --local --port ${toString cfg.port} --home ${cfg.home} --host ${cfg.host} \
|
|
|
|
${concatStringsSep " " cfg.extraOptions}
|
|
|
|
'';
|
2016-04-22 02:28:29 +02:00
|
|
|
|
2020-10-29 18:05:57 +01:00
|
|
|
DynamicUser = true;
|
2016-04-22 02:28:29 +02:00
|
|
|
|
|
|
|
ProtectHome = true;
|
|
|
|
|
|
|
|
RuntimeDirectory = "hoogle";
|
|
|
|
WorkingDirectory = "%t/hoogle";
|
2016-04-12 22:31:47 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|