diff options
author | Ryan Prior <rprior@protonmail.com> | 2020-05-01 14:47:20 -0500 |
---|---|---|
committer | Guix Patches Tester <> | 2020-05-02 05:04:19 +0100 |
commit | b2ad55b5550068dce6df4267096ab1d2a1dbe868 (patch) | |
tree | 85540961792d1c7d01bc9585a9321e8220349111 | |
parent | 7e2e37edc26d7b369a041d4e8b3e187638078e36 (diff) | |
download | patches-series-3792.tar patches-series-3792.tar.gz |
gnu: oil-shell: Rename to "oil" and add a deprecated aliasseries-3792
-rw-r--r-- | gnu/packages/shells.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index c71e6399ea..10f0ec817c 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -748,9 +748,9 @@ Shell (pdksh).") (license (list miros isc)))) ; strlcpy.c -(define-public oil-shell +(define-public oil (package - (name "oil-shell") + (name "oil") (version "0.7.0") (source (origin (method url-fetch) @@ -794,6 +794,9 @@ is commonly written.") (license (list psfl ; The Oil sources include a patched Python 2 source tree asl2.0)))) +(define-public oil-shell + (deprecated-package "oil-shell" oil)) + (define-public gash (package (name "gash") |