guix-commits
[Top][All Lists]
Advanced

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

07/10: gnu: Add ocaml-topkg.


From: David Craven
Subject: 07/10: gnu: Add ocaml-topkg.
Date: Wed, 4 Jan 2017 16:41:24 +0000 (UTC)

dvc pushed a commit to branch master
in repository guix.

commit a359c7277c9243c6bea6963fc44b547f446fa7dd
Author: Julien Lepiller <address@hidden>
Date:   Fri Dec 30 11:40:26 2016 +0100

    gnu: Add ocaml-topkg.
    
    * gnu/packages/ocaml.scm (ocaml-topkg): New variable.
    
    Signed-off-by: David Craven <address@hidden>
---
 gnu/packages/ocaml.scm |   30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 9eff014..d8c6fcf 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -1093,3 +1093,33 @@ powerful.")
 staying compatible with older version of OCaml should use the Result module
 defined in this library.")
     (license license:bsd-3)))
+
+(define-public ocaml-topkg
+  (package
+    (name "ocaml-topkg")
+    (version "0.8.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append 
"http://erratique.ch/software/topkg/releases/";
+                                  "topkg-" version ".tbz"))
+              (sha256
+               (base32
+                "18rrh6fmf708z7dd30amljmcgaypj3kk49jrmrj68r4wnw8004j8"))))
+    (build-system ocaml-build-system)
+    (native-inputs
+     `(("opam" ,opam)))
+    (propagated-inputs
+     `(("result" ,ocaml-result)))
+    (arguments
+     `(#:tests? #f
+       #:build-flags '("build")
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure))))
+    (home-page "http://erratique.ch/software/topkg";)
+    (synopsis "Transitory OCaml software packager")
+    (description "Topkg is a packager for distributing OCaml software. It
+provides an API to describe the files a package installs in a given build
+configuration and to specify information about the package's distribution,
+creation and publication procedures.")
+    (license license:isc)))



reply via email to

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