guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/08: gnu: Add ocaml-ppx-tools.


From: julien lepiller
Subject: 05/08: gnu: Add ocaml-ppx-tools.
Date: Mon, 16 Jan 2017 21:35:17 +0000 (UTC)

roptat pushed a commit to branch master
in repository guix.

commit 0a7b43a8187f8f374ab1a696fedf182679a5ae65
Author: Julien Lepiller <address@hidden>
Date:   Fri Dec 30 11:50:19 2016 +0100

    gnu: Add ocaml-ppx-tools.
    
    * gnu/packages/ocaml.scm (ocaml-ppx-tools): New variable.
---
 gnu/packages/ocaml.scm |   19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index cfe2eb1..16d56fe 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -1316,3 +1316,22 @@ Alcotest provides a quiet and colorful output where only 
faulty runs are fully
 displayed at the end of the run (with the full logs ready to inspect), with a
 simple (yet expressive) query language to select the tests to run.")
     (license license:isc)))
+
+(define-public ocaml-ppx-tools
+  (package
+    (name "ocaml-ppx-tools")
+    (version "5.0+4.02.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append "https://github.com/alainfrisch/ppx_tools/archive/";
+                            version ".tar.gz"))
+        (sha256 (base32
+                  "0rjg4rngi8k9873z4zq95zn9hj8qyw1vcrf11y15aqasfpqq16rc"))))
+    (build-system ocaml-build-system)
+    (arguments `(#:phases (modify-phases %standard-phases (delete 'configure))
+                 #:tests? #f))
+    (home-page "https://github.com/alainfrisch/ppx_tools";)
+    (synopsis "Tools for authors of ppx rewriters and other syntactic tools")
+    (description "Tools for authors of ppx rewriters and other syntactic 
tools.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]