aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/bos
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-03-16 07:11:33 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-03-16 07:11:33 +0000
commit49c18cc75d394c57acffa594b170d36014a88b3a (patch)
tree3438c5a70d9d3ee69a990dcb4f0e3b3f634e222a /pkgs/development/ocaml-modules/bos
parentf60fec99d19f0f2181661d65f73aca3a85ca81c4 (diff)
ocamlPackages.bos: init at 0.1.4
Bos provides support for basic and robust interaction with the operating system in OCaml. Homepage: http://erratique.ch/software/bos
Diffstat (limited to 'pkgs/development/ocaml-modules/bos')
-rw-r--r--pkgs/development/ocaml-modules/bos/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/bos/default.nix b/pkgs/development/ocaml-modules/bos/default.nix
new file mode 100644
index 000000000000..eb1e8d15feab
--- /dev/null
+++ b/pkgs/development/ocaml-modules/bos/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, astring, fmt, fpath, logs, rresult
+}:
+
+stdenv.mkDerivation rec {
+ name = "ocaml${ocaml.version}-bos-${version}";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "http://erratique.ch/software/bos/releases/bos-${version}.tbz";
+ sha256 = "1ly66lysk4w6mdy4k1n3ynlpfpq7lw4wshcpzgx58v6x613w5s7q";
+ };
+
+ unpackCmd = "tar xjf $src";
+
+ buildInputs = [ ocaml findlib ocamlbuild opam topkg ];
+ propagatedBuildInputs = [ astring fmt fpath logs rresult ];
+
+ inherit (topkg) buildPhase installPhase;
+
+ meta = {
+ description = "Basic OS interaction for OCaml";
+ homepage = http://erratique.ch/software/bos;
+ license = stdenv.lib.licenses.isc;
+ maintainers = [ stdenv.lib.maintainers.vbgl ];
+ inherit (ocaml.meta) platforms;
+ };
+}