2018-08-18 16:13:33 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.go;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
meta.maintainers = [ maintainers.rvolosatovs ];
|
|
|
|
|
|
|
|
options = {
|
|
|
|
programs.go = {
|
|
|
|
enable = mkEnableOption "Go";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.go;
|
2019-08-28 00:12:28 +02:00
|
|
|
defaultText = literalExample "pkgs.go";
|
2018-08-18 16:13:33 +02:00
|
|
|
description = "The Go package to use.";
|
|
|
|
};
|
|
|
|
|
|
|
|
packages = mkOption {
|
|
|
|
type = with types; attrsOf path;
|
|
|
|
default = {};
|
|
|
|
example = literalExample ''
|
|
|
|
{
|
2018-09-21 09:42:38 +02:00
|
|
|
"golang.org/x/text" = builtins.fetchGit "https://go.googlesource.com/text";
|
|
|
|
"golang.org/x/time" = builtins.fetchGit "https://go.googlesource.com/time";
|
2018-08-18 16:13:33 +02:00
|
|
|
}
|
|
|
|
'';
|
|
|
|
description = "Packages to add to GOPATH.";
|
|
|
|
};
|
|
|
|
|
|
|
|
goPath = mkOption {
|
|
|
|
type = with types; nullOr str;
|
|
|
|
default = null;
|
|
|
|
example = "go";
|
|
|
|
description = "GOPATH relative to HOME";
|
|
|
|
};
|
|
|
|
|
|
|
|
goBin = mkOption {
|
|
|
|
type = with types; nullOr str;
|
|
|
|
default = null;
|
|
|
|
example = ".local/bin.go";
|
|
|
|
description = "GOBIN relative to HOME";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable (mkMerge [
|
|
|
|
{
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
home.file =
|
|
|
|
let
|
|
|
|
goPath = if cfg.goPath != null then cfg.goPath else "go";
|
|
|
|
|
|
|
|
mkSrc = n: v: {
|
|
|
|
target = "${goPath}/src/${n}";
|
|
|
|
source = v;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
mapAttrsToList mkSrc cfg.packages;
|
|
|
|
}
|
|
|
|
(mkIf (cfg.goPath != null) {
|
|
|
|
home.sessionVariables.GOPATH = builtins.toPath "${config.home.homeDirectory}/${cfg.goPath}";
|
|
|
|
})
|
|
|
|
(mkIf (cfg.goBin != null) {
|
|
|
|
home.sessionVariables.GOBIN = builtins.toPath "${config.home.homeDirectory}/${cfg.goBin}";
|
|
|
|
})
|
|
|
|
]);
|
|
|
|
}
|