gnu: conda: Fix environment scripts.
authorRicardo Wurmus <rekado@elephly.net>
Thu, 2 Nov 2017 23:10:36 +0000 (00:10 +0100)
committerRicardo Wurmus <rekado@elephly.net>
Thu, 2 Nov 2017 23:12:46 +0000 (00:12 +0100)
* gnu/packages/package-management.scm (conda)[arguments]: Add phase
"undo-wrap".

gnu/packages/package-management.scm

index af0ef10..8703209 100644 (file)
@@ -732,7 +732,17 @@ This package provides Conda as a library.")
                  ;; And it aborts if the directory doesn't exist.
                  (mkdir-p target)
                  (zero? (system* "python" "utils/setup-testing.py" "install"
-                                 (string-append "--prefix=" out))))))))))
+                                 (string-append "--prefix=" out))))))
+           ;; The "activate" and "deactivate" scripts don't need wrapping.
+           ;; They also break when they are renamed.
+           (add-after 'wrap 'undo-wrap
+             (lambda* (#:key outputs #:allow-other-keys)
+               (with-directory-excursion (string-append (assoc-ref outputs "out") "/bin/")
+                 (delete-file "deactivate")
+                 (rename-file ".deactivate-real" "deactivate")
+                 (delete-file "activate")
+                 (rename-file ".activate-real" "activate")
+                 #t)))))))
     (description
      "Conda is a cross-platform, Python-agnostic binary package manager.  It
 is the package manager used by Anaconda installations, but it may be used for