all repos — searchix @ fe79b4509dd580542fa28186673826df603677bb

Search engine for NixOS, nix-darwin, home-manager and NUR users

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
commit

fe79b4509dd580542fa28186673826df603677bb

parent

2e56008ef28109f0895b5918e2d0caeb16a08d8a

2 files changed, 8 insertions(+), 1 deletions(-)

jump to
M internal/config/config.gointernal/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.gointernal/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()