[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55030] [PATCH 02/30] gnu: elm: Rename package to match the command.
From: |
Philip McGrath |
Subject: |
[bug#55030] [PATCH 02/30] gnu: elm: Rename package to match the command. |
Date: |
Tue, 19 Apr 2022 19:31:46 -0400 |
* gnu/packages/elm.scm (elm-compiler): Rename to ...
(elm): ... this variable.
[description]: Tweak.
---
gnu/packages/elm.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/elm.scm b/gnu/packages/elm.scm
index 708c1cf0d2..be2e4ebcbd 100644
--- a/gnu/packages/elm.scm
+++ b/gnu/packages/elm.scm
@@ -33,13 +33,13 @@ (define-module (gnu packages elm)
;; The `elm` build usually calls out to itself via Template Haskell to compile
;; the `elm reactor` web app (which depends on additional Elm packages) and
;; embeds the static files into itself. The reactor isn't required to compile
-;; elm applications, so we want to skip it from the bootstrap package, but we
+;; Elm applications, so we want to skip it from the bootstrap package, but we
;; also want to be able to enable it once we can build it. We patch Elm to
-;; instead look for the files on disk relative to the executable and exit with
-;; a useful error message if they aren't there.
-(define-public elm-compiler
+;; instead look for the files on disk relative to the executable and to have
+;; `elm reactor` exit with a useful error message if they aren't there.
+(define-public elm
(package
- (name "elm-compiler")
+ (name "elm")
(version "0.19.1")
(source
(origin
@@ -91,7 +91,7 @@ (define-public elm-compiler
(home-page "https://elm-lang.org")
(synopsis "Programming language for Web applications")
(description
- "This package provides Elm, a statically-typed functional programming
-language for the browser. It includes commands for developers such as
-@command{elm make} and @command{elm repl}.")
+ "Elm is a statically-typed, purely-functional programming language for
+the browser. The @command{elm} exectable includes commands for developers
+such as @command{elm make} and @command{elm repl}.")
(license license:bsd-3)))
--
2.32.0
- [bug#55030] [PATCH 00/30] gnu: elm: Update to 0.19.1. Add build system & importer., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 01/30] gnu: elm-compiler: Update to 0.19.1., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 04/30] gnu: Add elm-core and elm-json., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 09/30] gnu: Add elm-time., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 10/30] gnu: Add elm-url., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 02/30] gnu: elm: Rename package to match the command.,
Philip McGrath <=
- [bug#55030] [PATCH 03/30] guix: Add elm-build-system and 'guix import elm'., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 12/30] gnu: Add elm-bytes., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 14/30] gnu: Add elm-http., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 08/30] gnu: Add elm-svg., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 11/30] gnu: Add elm-browser., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 15/30] gnu: Add elm-parser., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 05/30] build-system/elm: Add implicit Elm inputs., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 06/30] gnu: Add elm-virtual-dom., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 07/30] gnu: Add elm-html., Philip McGrath, 2022/04/19
- [bug#55030] [PATCH 13/30] gnu: Add elm-file., Philip McGrath, 2022/04/19