nixpkgs/nixos/modules/services/development/hoogle.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

95 lines
2.2 KiB
Nix
Raw Normal View History

2016-04-12 20:31:47 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.hoogle;
hoogleEnv = pkgs.buildEnv {
name = "hoogle";
paths = [ (cfg.haskellPackages.ghcWithHoogle cfg.packages) ];
};
2016-04-12 20:31:47 +00:00
in {
options.services.hoogle = {
enable = mkEnableOption "Haskell documentation server";
2016-04-12 20:31:47 +00:00
port = mkOption {
2021-08-01 11:09:26 +00:00
type = types.port;
2016-04-12 20:31:47 +00:00
default = 8080;
description = ''
2016-04-12 20:31:47 +00:00
Port number Hoogle will be listening to.
'';
};
packages = mkOption {
type = types.functionTo (types.listOf types.package);
2016-04-12 20:31:47 +00:00
default = hp: [];
defaultText = literalExpression "hp: []";
example = literalExpression "hp: with hp; [ text lens ]";
description = ''
The Haskell packages to generate documentation for.
2016-04-12 20:31:47 +00: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 20:31:47 +00:00
'';
};
haskellPackages = mkOption {
description = "Which haskell package set to use.";
2021-12-07 17:36:01 +00:00
type = types.attrs;
default = pkgs.haskellPackages;
defaultText = literalExpression "pkgs.haskellPackages";
2016-04-12 20:31:47 +00:00
};
2018-07-30 10:27:07 +00:00
home = mkOption {
type = types.str;
description = "Url for hoogle logo";
2018-07-30 10:27:07 +00:00
default = "https://hoogle.haskell.org";
};
host = mkOption {
type = types.str;
description = "Set the host to bind on.";
default = "127.0.0.1";
};
2024-03-07 03:12:41 +00:00
extraOptions = mkOption {
type = types.listOf types.str;
default = [];
example = [ "--no-security-headers" ];
description = ''
2024-03-07 03:12:41 +00:00
Additional command-line arguments to pass to
{command}`hoogle server`
'';
};
2016-04-12 20:31:47 +00:00
};
config = mkIf cfg.enable {
systemd.services.hoogle = {
description = "Haskell documentation server";
2016-04-12 20:31:47 +00:00
wantedBy = [ "multi-user.target" ];
2016-04-12 20:31:47 +00:00
serviceConfig = {
Restart = "always";
2024-03-07 03:12:41 +00:00
ExecStart = ''
${hoogleEnv}/bin/hoogle server --local --port ${toString cfg.port} --home ${cfg.home} --host ${cfg.host} \
${concatStringsSep " " cfg.extraOptions}
'';
DynamicUser = true;
ProtectHome = true;
RuntimeDirectory = "hoogle";
WorkingDirectory = "%t/hoogle";
2016-04-12 20:31:47 +00:00
};
};
};
}