The answer is contained within the question: just use gensym like you would if Clojure didn't have auto-gensyms.
(defmacro make [v & body]
(let [value-sym (gensym)]
`(let [~value-sym ~(some-calc v)]
~@(replace {:value value-sym} body))))
Note that I'm not sure whether you really want ~ or ~@ here - it depends if body is supposed to be a sequence of expressions to execute in the let, or a sequence of arguments to a single function call. But ~@ would be a lot more intuitive/normal, so that's what I'm going to guess.
Whether this macro is anaphoric is a little questionable: definitely introducing nv into the calling scope was, but it was basically unintentional so I would say no. In my revised version, we're no longer introducing nv or anything like it, but we are "magically" replacing :value with v. We only do that at the topmost level of the body, though, so it's not like introducing a real scope - I'd say it's more like making the client's code unexpectedly break in corner cases.
For an example of how this deceptive behavior can crop up, imagine that one of the elements of body is (inc :value). It won't get replaced by the macro, and will expand to (inc :value), which never succeeds. So instead I'd recommend a real anaphoric macro, which introduces a real scope for a symbol. Something like
(defmacro make [v & body]
`(let [~'the-value ~(some-calc v)]
~@body))
And then the caller can just use the-value in their code, and it behaves just like a real, regular local binding: your macro introduces it by magic, but it doesn't have any other special tricks.
nvshould refer to some portion of the macro invocation form. If you factor outsome-calcfrom the macro body then you'll have a more proper anaphoric invocation:(make (some-calc x) (do-something-to nv))wherenvrefers to(some-calc x). In your case you'll have(make x (do-some-thing-to nv)), but thennvwould not directly refer to anything in the macro invocation form. – skuro Mar 19 '12 at 8:23gensymas per amalloy's suggestion solves this problem. – Philip K Mar 19 '12 at 8:52