about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2022-03-09 15:42:31 +0530
committerArun Isaac2022-03-09 16:39:31 +0530
commite44e41393f7c48b4605f769de4694578339ec188 (patch)
tree0614259b09529d18f64b0a4f860b7da3cfdd061c
parentd78b6dea8495b5d117b0da987a3d28d2f197f328 (diff)
downloadgn-transform-databases-e44e41393f7c48b4605f769de4694578339ec188.tar.gz
Rename guix.scm to manifest.scm.
We only have a manifest, not a package definition. So, rename it as
such, making `guix shell' invocations briefer.

* guix.scm: Rename to manifest.scm. In documentation comments, make
`guix shell' implicitly pick up the manifest file.
* README.org (Using): Make `guix shell' implicitly pick up the
manifest file.
-rw-r--r--README.org2
-rw-r--r--manifest.scm (renamed from guix.scm)2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.org b/README.org
index 75b0e21..fbc5705 100644
--- a/README.org
+++ b/README.org
@@ -7,7 +7,7 @@ dump the relational database to plain text.
 Drop into a development environment with
 
 #+BEGIN_SRC shell
-  $ guix shell -m guix.scm
+  $ guix shell
 #+END_SRC
 
 Describe the database connection parameters in a file /conn.scm/ file
diff --git a/guix.scm b/manifest.scm
index eedbb68..efcdcae 100644
--- a/guix.scm
+++ b/manifest.scm
@@ -1,6 +1,6 @@
 ;; Drop into a development environment using
 ;;
-;; guix shell -m guix.scm
+;; guix shell
 ;;
 ;; Happy hacking!