diff options
author | Julien Lepiller <julien@lepiller.eu> | 2021-11-20 15:30:56 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2021-11-20 17:07:44 +0100 |
commit | 97fd67edea951edd53d62250975edf93ed90c1a5 (patch) | |
tree | 17c15acbc587f9ccf9b98432238c3de49c9b66ea | |
parent | 95e6a977fa1c41792e2074a12d4efeffa36218c1 (diff) | |
download | guix-97fd67edea951edd53d62250975edf93ed90c1a5.tar.gz |
gnu: ocaml-ppx-js-style: Update to 0.14.1.
* gnu/packages/ocaml.scm (ocaml-ppx-js-style): Update to 0.14.1.
-rw-r--r-- | gnu/packages/ocaml.scm | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d378bf4560..b52c6803b3 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6143,10 +6143,17 @@ to denote the expected output.") (define-public ocaml-ppx-js-style (package (name "ocaml-ppx-js-style") - (version "0.14.0") + (version "0.14.1") (source - (janestreet-origin "ppx_js_style" version - "141fgxfipfn5jdaxc946dmp5y4fcnbhxms9maji9ddywgx82ya7l")) + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/janestreet/ppx_js_style") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "16ax6ww9h36xyn9acbm8zxv0ajs344sm37lgj2zd2bvgsqv24kxj")))) (build-system dune-build-system) (arguments `(#:tests? #f)) ; No tests (propagated-inputs |