carapace-nix-build.patch 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. diff --git a/completers/nix-build_completer/cmd/root.go b/completers/nix-build_completer/cmd/root.go
  2. new file mode 100644
  3. index 00000000..544f0c3c
  4. --- /dev/null
  5. +++ b/completers/nix-build_completer/cmd/root.go
  6. @@ -0,0 +1,43 @@
  7. +package cmd
  8. +
  9. +import (
  10. + "github.com/rsteube/carapace"
  11. + "github.com/rsteube/carapace-bin/pkg/actions/tools/nix"
  12. + "github.com/spf13/cobra"
  13. +)
  14. +
  15. +var rootCmd = &cobra.Command{
  16. + Use: "nix-build",
  17. + Short: "build a Nix expression",
  18. + Long: "https://nixos.org/manual/nix/stable/command-ref/nix-build.html",
  19. + Run: func(cmd *cobra.Command, args []string) {},
  20. +}
  21. +
  22. +func Execute() error {
  23. + return rootCmd.Execute()
  24. +}
  25. +func init() {
  26. + carapace.Gen(rootCmd).Standalone()
  27. +
  28. + rootCmd.Flags().StringP("attr", "A", "", "Attribute to build")
  29. + rootCmd.Flags().Bool("dry-run", false, "Show what store paths would be built or downloaded")
  30. + rootCmd.Flags().StringP("include", "I", "", "Include paths")
  31. + rootCmd.Flags().Bool("no-out-link", false, "Do not create a symlink to the output path")
  32. + rootCmd.Flags().StringP("out-link", "o", "", "Change the name of the symlink to the output path")
  33. + // TODO support --arg and --argstr
  34. +
  35. + carapace.Gen(rootCmd).FlagCompletion(carapace.ActionMap{
  36. + "attr": carapace.ActionCallback(func(c carapace.Context) carapace.Action {
  37. + opts := nix.AttributeOpts{Source: "default.nix", Include: rootCmd.Flag("include").Value.String()}
  38. + if len(c.Args) > 0 {
  39. + opts.Source = c.Args[0]
  40. + }
  41. + return nix.ActionAttributes(opts)
  42. + }),
  43. + })
  44. +
  45. + carapace.Gen(rootCmd).PositionalAnyCompletion(
  46. + nix.ActionPaths(),
  47. + )
  48. +
  49. +}
  50. diff --git a/completers/nix-build_completer/main.go b/completers/nix-build_completer/main.go
  51. new file mode 100644
  52. index 00000000..a733fad2
  53. --- /dev/null
  54. +++ b/completers/nix-build_completer/main.go
  55. @@ -0,0 +1,7 @@
  56. +package main
  57. +
  58. +import "github.com/rsteube/carapace-bin/completers/nix-build_completer/cmd"
  59. +
  60. +func main() {
  61. + cmd.Execute()
  62. +}
  63. diff --git a/completers/nix-channel_completer/cmd/root.go b/completers/nix-channel_completer/cmd/root.go
  64. index 4da5434f..1fd1ba5d 100644
  65. --- a/completers/nix-channel_completer/cmd/root.go
  66. +++ b/completers/nix-channel_completer/cmd/root.go
  67. @@ -34,7 +34,7 @@ func init() {
  68. } else if rootCmd.Flag("add").Changed {
  69. switch len(c.Args) {
  70. case 0:
  71. - return nix.ActionRemoteChannels()
  72. + return nix.ActionRemoteChannels().Invoke(c).Prefix("https://nixos.org/channels/").ToA()
  73. case 1:
  74. return nix.ActionLocalChannels()
  75. }
  76. diff --git a/pkg/actions/tools/nix/attribute.go b/pkg/actions/tools/nix/attribute.go
  77. new file mode 100644
  78. index 00000000..188d0820
  79. --- /dev/null
  80. +++ b/pkg/actions/tools/nix/attribute.go
  81. @@ -0,0 +1,89 @@
  82. +package nix
  83. +
  84. +import (
  85. + _ "embed"
  86. + "encoding/json"
  87. + "fmt"
  88. + "path"
  89. + "strings"
  90. +
  91. + "github.com/rsteube/carapace"
  92. +)
  93. +
  94. +//go:embed attributeComplete.nix
  95. +var attributeCompleteScript string
  96. +
  97. +type AttributeOpts struct {
  98. + Source string
  99. + Include string
  100. +}
  101. +
  102. +// ActionAttributes completes attributes
  103. +//
  104. +// firefox
  105. +// git
  106. +func ActionAttributes(opts AttributeOpts) carapace.Action {
  107. + return carapace.ActionCallback(func(c carapace.Context) carapace.Action {
  108. + if opts.Source == "" {
  109. + opts.Source = "default.nix"
  110. + }
  111. +
  112. + attrPath := c.CallbackValue
  113. +
  114. + if strings.HasPrefix(opts.Source, "<") {
  115. + // expression is a local channel, use as-is
  116. + } else if strings.HasPrefix(opts.Source, "http:") || strings.HasPrefix(opts.Source, "https:") {
  117. + // expression is a url, wrap in fetchTarball
  118. + opts.Source = fmt.Sprintf("(fetchTarball %s)", opts.Source)
  119. + } else if strings.HasPrefix(opts.Source, "channel:") {
  120. + // expression is a channel alias, convert to url
  121. + channelName := opts.Source[8:]
  122. + opts.Source = fmt.Sprintf("(fetchTarball https://nixos.org/channels/%s/nixexprs.tar.xz)", channelName)
  123. + } else {
  124. + // expression is a local file
  125. + filePath := path.Clean(opts.Source)
  126. + if path.Base(filePath) == filePath {
  127. + // paths must have at least one `/`
  128. + filePath = fmt.Sprintf("./%s", filePath)
  129. + }
  130. + opts.Source = filePath
  131. + }
  132. + expression := fmt.Sprintf("import %s", opts.Source)
  133. +
  134. + // nix itself handles quotes weirdly so we just avoid them altogether
  135. + if strings.Contains(attrPath, "\"") {
  136. + return carapace.ActionMessage("attrPath may not contain double-quotes")
  137. + }
  138. +
  139. + // strip right-most attr
  140. + lastDotIndex := strings.LastIndex(attrPath, ".")
  141. + if lastDotIndex >= 0 {
  142. + attrPath = attrPath[0:lastDotIndex]
  143. + } else {
  144. + attrPath = ""
  145. + }
  146. +
  147. + args := []string{
  148. + "--eval", "--json",
  149. + "--expr", attributeCompleteScript,
  150. + "--arg", "__carapaceInput__", expression,
  151. + "--argstr", "__carapaceAttrPath__", attrPath,
  152. + }
  153. + if opts.Include != "" {
  154. + args = append(args, "-I", opts.Include)
  155. + }
  156. + // TODO handle passing through --arg and --argstr from original command
  157. +
  158. + return carapace.ActionExecCommand("nix-instantiate", args...)(func(output []byte) carapace.Action {
  159. + var data []string
  160. + json.Unmarshal(output, &data)
  161. +
  162. + prefix := ""
  163. + if attrPath != "" {
  164. + prefix = fmt.Sprintf("%s.", attrPath)
  165. + }
  166. +
  167. + return carapace.ActionValues(data...).Prefix(prefix).NoSpace()
  168. + })
  169. + })
  170. +}
  171. diff --git a/pkg/actions/tools/nix/attributeComplete.nix b/pkg/actions/tools/nix/attributeComplete.nix
  172. new file mode 100644
  173. index 00000000..4f98d858
  174. --- /dev/null
  175. +++ b/pkg/actions/tools/nix/attributeComplete.nix
  176. @@ -0,0 +1,25 @@
  177. +all@{ __carapaceInput__, __carapaceAttrPath__, ... }:
  178. +let
  179. + inputArgs = builtins.removeAttrs all ["__carapaceInput__" "__carapaceAttrPath__"];
  180. +
  181. + input =
  182. + if builtins.isFunction __carapaceInput__ then
  183. + __carapaceInput__ inputArgs
  184. + else
  185. + __carapaceInput__;
  186. +
  187. + autocall = fnOrAttrset:
  188. + if builtins.isFunction fnOrAttrset then
  189. + fnOrAttrset {}
  190. + else
  191. + fnOrAttrset;
  192. +
  193. + paths = builtins.filter (path: (builtins.isString path) && path != "") (builtins.split "\\." __carapaceAttrPath__);
  194. +
  195. + reducer = attrset: name: autocall (builtins.getAttr name attrset);
  196. + result = builtins.foldl' reducer input paths;
  197. +in
  198. + if builtins.isAttrs result then
  199. + builtins.attrNames result
  200. + else
  201. + []
  202. diff --git a/pkg/actions/tools/nix/channel.go b/pkg/actions/tools/nix/channel.go
  203. index 930da5a9..62c5ffd4 100644
  204. --- a/pkg/actions/tools/nix/channel.go
  205. +++ b/pkg/actions/tools/nix/channel.go
  206. @@ -63,8 +63,6 @@ func ActionRemoteChannels() carapace.Action {
  207. for _, result := range response.Data.Result {
  208. vals = append(vals, result.Metric.Channel, result.Metric.Status, styleForStatus(result.Metric.Status))
  209. }
  210. - return carapace.ActionCallback(func(c carapace.Context) carapace.Action {
  211. - return carapace.ActionStyledValuesDescribed(vals...).Invoke(c).Prefix("https://nixos.org/channels/").ToA()
  212. - })
  213. + return carapace.ActionStyledValuesDescribed(vals...)
  214. })
  215. }
  216. diff --git a/pkg/actions/tools/nix/path.go b/pkg/actions/tools/nix/path.go
  217. new file mode 100644
  218. index 00000000..1bacd46c
  219. --- /dev/null
  220. +++ b/pkg/actions/tools/nix/path.go
  221. @@ -0,0 +1,31 @@
  222. +package nix
  223. +
  224. +import (
  225. + "strings"
  226. +
  227. + "github.com/rsteube/carapace"
  228. +)
  229. +
  230. +// ActionPaths completes paths
  231. +//
  232. +// A path can be one of:
  233. +// - a local file path (default.nix)
  234. +// - an http/https URL (https://releases.nixos.org/../nixexprs.tar.xz
  235. +// - a channel: specifier (channel:nixos-22.05)
  236. +// - a local channel (<nixpkgs>)
  237. +func ActionPaths() carapace.Action {
  238. + return carapace.ActionCallback(func(c carapace.Context) carapace.Action {
  239. + batch := carapace.Batch(
  240. + ActionLocalChannels().Prefix("<").Suffix(">"),
  241. + carapace.ActionFiles(),
  242. + )
  243. +
  244. + if !strings.HasPrefix(c.CallbackValue, "channel:") {
  245. + batch = append(batch, carapace.ActionValues("channel:").NoSpace())
  246. + } else {
  247. + batch = append(batch, ActionRemoteChannels().Prefix("channel:"))
  248. + }
  249. +
  250. + return batch.ToA()
  251. + })
  252. +}