diff options
author | Julien Lepiller <julien@lepiller.eu> | 2016-12-30 12:50:33 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2017-01-31 21:35:38 +0100 |
commit | 77a515e9b547dd0a137e1e37bdc3e0a35058b2e2 (patch) | |
tree | 5599515c3c76491fb3bd859a0c2ac896ffe9098c | |
parent | 3763eea716f48d553aa3c440310ceede5548f3e8 (diff) | |
download | gnu-guix-77a515e9b547dd0a137e1e37bdc3e0a35058b2e2.tar gnu-guix-77a515e9b547dd0a137e1e37bdc3e0a35058b2e2.tar.gz |
gnu: Add ocaml-fileutils.
* gnu/packages/ocaml.scm (ocaml-fileutils): New variable.
-rw-r--r-- | gnu/packages/ocaml.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 16ec4723fa..9907d65fe0 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1882,3 +1882,21 @@ language.") (description "Help building unitary testing of interactive program. You can match the question using a regular expression or a timeout.") (license license:lgpl2.1+))) ; with the OCaml static compilation exception + +(define-public ocaml-fileutils + (package + (name "ocaml-fileutils") + (version "0.5.1") + (source (origin + (method url-fetch) + (uri (ocaml-forge-uri name version 1651)) + (sha256 + (base32 + "0g6zx2rcvacklxyli19ixcf6ich9ipxsps4k3jz98f5zlaab0a7g")))) + (build-system ocaml-build-system) + (native-inputs `(("ounit" ,ocaml-ounit))) + (home-page "http://ocaml-fileutils.forge.ocamlcore.org") + (synopsis "Pure OCaml functions to manipulate real file and filename") + (description "Library to provide pure OCaml functions to manipulate real +file (POSIX like) and filename.") + (license license:lgpl2.1+))) ; with the OCaml static compilation exception |