~ruther/guix-local

1a7d8e2048768ba093b2b09aa265e7abcbce7a31 — Ludovic Courtès 13 years ago e67ac6e
gnu-build-system: Dump the values of environment variables.

* guix/build/gnu-build-system.scm (set-paths): Dump the value of
  environment variables in the `environment-variables' files, similar to
  what Nixpkgs does.
1 files changed, 4 insertions(+), 1 deletions(-)

M guix/build/gnu-build-system.scm
M guix/build/gnu-build-system.scm => guix/build/gnu-build-system.scm +4 -1
@@ 50,7 50,10 @@
  (let ((inputs (map cdr inputs)))
    (set-path-environment-variable "PATH" '("bin") inputs)
    (set-path-environment-variable "CPATH" '("include") inputs)
    (set-path-environment-variable "LIBRARY_PATH" '("lib" "lib64") inputs)))
    (set-path-environment-variable "LIBRARY_PATH" '("lib" "lib64") inputs)

    ;; Dump the environment variables as a shell script, for handy debugging.
    (system "export > environment-variables")))

(define* (unpack #:key source #:allow-other-keys)
  (and (zero? (system* "tar" "xvf" source))