guix-patches
[Top][All Lists]
Advanced

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

[bug#73466] [PATCH v2 03/15] gnu: Add ocaml-arg-complete.


From: Herman Rimm
Subject: [bug#73466] [PATCH v2 03/15] gnu: Add ocaml-arg-complete.
Date: Thu, 26 Sep 2024 09:23:33 +0200

* gnu/packages/ocaml.scm (ocaml-arg-complete): Add variable.

Change-Id: I9f6b5345ccb79f7774451656e8a9a4422a84d2d6
---
 gnu/packages/ocaml.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 7dcc17357d..580d48e354 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -654,6 +654,28 @@ (define-public camlidl
 code for interfacing Caml with C from an IDL description of the C functions.")
     (license license:lgpl2.1)))
 
+(define-public ocaml-arg-complete
+  (package
+    (name "ocaml-arg-complete")
+    (version "0.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/sim642/ocaml-arg-complete";)
+              (commit version)))
+       (sha256
+        (base32
+          "0axvgkjs11prsch9ms8r6kk4pj2gcajj27qrxj3v49x3pmilqbcl"))))
+    (build-system dune-build-system)
+    (propagated-inputs (list ocaml-cppo ocaml-odoc))
+    (native-inputs (list ocaml-ounit2))
+    (home-page "https://github.com/sim642/ocaml-arg-complete";)
+    (synopsis "Bash completion support for Stdlib.Arg")
+    (description
+      "This package provides bash completion support for Stdlib.Arg.")
+    (license license:expat)))
+
 (define-public ocaml-extlib
   (package
     (name "ocaml-extlib")
-- 
2.45.2






reply via email to

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