mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
87647a1bf9
bloop uses 'start' command now which starts daemon in the background
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.bloop;
|
|
|
|
in {
|
|
|
|
options.services.bloop = {
|
|
extraOptions = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
example = [
|
|
"-J-Xmx2G"
|
|
"-J-XX:MaxInlineLevel=20"
|
|
"-J-XX:+UseParallelGC"
|
|
];
|
|
description = ''
|
|
Specifies additional command line argument to pass to bloop
|
|
java process.
|
|
'';
|
|
};
|
|
|
|
install = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to install a user service for the Bloop server.
|
|
|
|
The service must be manually started for each user with
|
|
"systemctl --user start bloop".
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf (cfg.install) {
|
|
systemd.user.services.bloop = {
|
|
description = "Bloop Scala build server";
|
|
|
|
environment = {
|
|
PATH = mkForce "${makeBinPath [ config.programs.java.package ]}";
|
|
};
|
|
serviceConfig = {
|
|
Type = "forking";
|
|
ExecStart = "${pkgs.bloop}/bin/bloop start";
|
|
ExecStop = "${pkgs.bloop}/bin/bloop exit";
|
|
Restart = "always";
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.bloop ];
|
|
};
|
|
}
|