feat: enable using channel URLs if unable to resolve via NIX_PATH
Alan Pearce alan@alanpearce.eu
Sun, 12 May 2024 21:29:56 +0200
2 files changed, 8 insertions(+), 1 deletions(-)
M internal/config/config.go → internal/config/config.go
@@ -48,6 +48,7 @@ Key: "nixos", Enable: true, Type: importer.Channel, Channel: "nixpkgs", + URL: "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz", ImportPath: "nixos/release.nix", Attribute: "options", OutputPath: "share/doc/nixos/options.json", @@ -64,7 +65,8 @@ Name: "Darwin", Key: "darwin", Enable: false, Type: importer.Channel, - Channel: "nix-darwin", + Channel: "darwin", + URL: "https://github.com/LnL7/nix-darwin/archive/master.tar.gz", ImportPath: "release.nix", Attribute: "options", OutputPath: "share/doc/darwin/options.json", @@ -81,6 +83,7 @@ Name: "Home Manager", Key: "home-manager", Enable: false, Channel: "home-manager", + URL: "https://github.com/nix-community/home-manager/archive/master.tar.gz", Type: importer.Channel, ImportPath: "default.nix", Attribute: "docs.json",
M internal/importer/channel.go → internal/importer/channel.go
@@ -45,6 +45,10 @@ "--out-link", dest, } + if i.Source.URL != "" { + args = append(args, "-I", fmt.Sprintf("%s=%s", i.Source.Channel, i.Source.URL)) + } + i.Logger.Debug("nix-build command", "args", args) cmd := exec.CommandContext(ctx, "nix-build", args...) out, err := cmd.Output()