diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2022-05-18 14:11:07 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-22 01:07:54 +0200 |
commit | 1e0e94c35e5f0d803f5ef2119338fbe0370f978d (patch) | |
tree | 05585c95b08f803bc160f174e3f000341b6934ce | |
parent | gnu: Add elm-parser. (diff) | |
download | guix-1e0e94c35e5f0d803f5ef2119338fbe0370f978d.tar.gz guix-1e0e94c35e5f0d803f5ef2119338fbe0370f978d.tar.bz2 guix-1e0e94c35e5f0d803f5ef2119338fbe0370f978d.tar.xz |
gnu: Add elm-project-metadata-utils.
* gnu/packages/elm.scm (elm-project-metadata-utils): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/elm.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/elm.scm b/gnu/packages/elm.scm index 4120fcaaf4..48594613f3 100644 --- a/gnu/packages/elm.scm +++ b/gnu/packages/elm.scm | |||
@@ -372,3 +372,28 @@ talk to servers.") | |||
372 | library provides a coherent alternative that handles more cases and produces | 372 | library provides a coherent alternative that handles more cases and produces |
373 | clearer code. It is focused on simplicity and great error messages.") | 373 | clearer code. It is focused on simplicity and great error messages.") |
374 | (license license:bsd-3))) | 374 | (license license:bsd-3))) |
375 | |||
376 | (define-public elm-project-metadata-utils | ||
377 | (package | ||
378 | (name "elm-project-metadata-utils") | ||
379 | (version "1.0.2") | ||
380 | (source | ||
381 | (elm-package-origin | ||
382 | "elm/project-metadata-utils" | ||
383 | version | ||
384 | (base32 "1wj7chfy4knwwyc3k0hy431c80hs7hc686qsr34ayn8gip73x2jj"))) | ||
385 | (build-system elm-build-system) | ||
386 | (propagated-inputs | ||
387 | (list elm-parser | ||
388 | elm-json | ||
389 | elm-core)) | ||
390 | (home-page | ||
391 | "https://package.elm-lang.org/packages/elm/project-metadata-utils/1.0.2") | ||
392 | (synopsis "Work with @file{elm.json} and @file{docs.json} files in Elm") | ||
393 | (description | ||
394 | "This package is meant for people creating Elm tooling, like editor | ||
395 | plugins. If you just want to make stuff in Elm, there is nothing here for | ||
396 | you.") | ||
397 | (properties '((upstream-name . "elm/project-metadata-utils"))) | ||
398 | (license license:bsd-3))) | ||
399 | |||