diff options
author | Arun Isaac | 2022-01-07 22:22:17 +0530 |
---|---|---|
committer | Arun Isaac | 2022-01-07 22:32:48 +0530 |
commit | 1382f00db69c523b37c1c5b6d1480b772e33cc44 (patch) | |
tree | 4d5e781ba5e6636514531784c64a13606cf6099b | |
parent | 43f0c68425f5484ef92c879ca48e1748a953197f (diff) | |
download | nsmc-1382f00db69c523b37c1c5b6d1480b772e33cc44.tar.gz nsmc-1382f00db69c523b37c1c5b6d1480b772e33cc44.tar.lz nsmc-1382f00db69c523b37c1c5b6d1480b772e33cc44.zip |
Move to `guix shell' friendly manifest.scm.
* guix.scm: Rename to manifest.scm. Replace `guix environment -l
guix.scm' with `guix shell'.
* README.org (Build): Replace `guix environment -l guix.scm' with
`guix shell'.
-rw-r--r-- | README.org | 5 | ||||
-rw-r--r-- | manifest.scm (renamed from guix.scm) | 2 |
2 files changed, 3 insertions, 4 deletions
@@ -13,11 +13,10 @@ Build dependencies are - [[https://www.gnu.org/software/gsl/][GNU Scientific Library]] (for vector and scientific functions) - [[https://gnu.org/software/guile][GNU Guile]] (for the scheme wrappers) -The easiest way to install these dependencies is to use a [[https://guix.gnu.org/][guix]] -environment. +The easiest way to install these dependencies is to use [[https://guix.gnu.org/][GNU Guix]]. #+BEGIN_SRC shell - $ guix environment -l guix.scm + $ guix shell #+END_SRC To build, run the following commands. @@ -1,7 +1,7 @@ ;;; Run the following command to enter a development environment for ;;; nsmc: ;;; -;;; $ guix environment -l guix.scm +;;; $ guix shell (use-modules (guix build-system cmake) (guix build-system guile) |