radian-software / straight.el

🍀 Next-generation, purely functional package manager for the Emacs hacker.
MIT License
2.69k stars 150 forks source link

nested `:fork` #1117

Open GamingKing2436 opened 11 months ago

GamingKing2436 commented 11 months ago

i was recently attempting to convert my emacs to straight.el and i liked the :fork feature. naturally i attempted to nest them as such:


(use-package elastic-table
  :straight
  (
   :host github
   :repo "tenbillionwords/spaceship-mode"
   :fork
   (
    :repo "jyp/elastic-modes"
    :fork
    (
     :repo "GamingKing2436/elastic-modes"))))
;; elastic tables yay

but it used the jyp/elastic-modes repo instead. looking closer at the docs apperently this isn't a bug.

it would be really cool if they could be nested. 😀

raxod502 commented 11 months ago

Yes, that is reasonable, it is not currently supported but could be with sufficient work.