summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/functory
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-09-21 11:02:55 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-09-21 11:02:55 +0100
commit857c13e1af1946841432a5f7b768e187c47ca0e3 (patch)
tree9e76803a7c12bf2590ad83e212c7491c3e475395 /pkgs/development/ocaml-modules/functory
parentd5f938d800d7627632e082d958ed48097ea313b1 (diff)
downloadnixpkgs-857c13e1af1946841432a5f7b768e187c47ca0e3.tar
nixpkgs-857c13e1af1946841432a5f7b768e187c47ca0e3.tar.gz
nixpkgs-857c13e1af1946841432a5f7b768e187c47ca0e3.tar.bz2
nixpkgs-857c13e1af1946841432a5f7b768e187c47ca0e3.tar.lz
nixpkgs-857c13e1af1946841432a5f7b768e187c47ca0e3.tar.xz
nixpkgs-857c13e1af1946841432a5f7b768e187c47ca0e3.tar.zst
nixpkgs-857c13e1af1946841432a5f7b768e187c47ca0e3.zip
Minor modifications of some ocaml packages:
adds myself as a maintainer
adds assertions to have evaluation errors rather than build errors
moves opam out of ocamlPackages, as it does not provide a library
Diffstat (limited to 'pkgs/development/ocaml-modules/functory')
-rw-r--r--pkgs/development/ocaml-modules/functory/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/functory/default.nix b/pkgs/development/ocaml-modules/functory/default.nix
index b596272655e..35dd542af9e 100644
--- a/pkgs/development/ocaml-modules/functory/default.nix
+++ b/pkgs/development/ocaml-modules/functory/default.nix
@@ -1,5 +1,7 @@
 {stdenv, fetchurl, ocaml, findlib}:
 
+assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.11";
+
 stdenv.mkDerivation {
 
   name = "ocaml-functory-0.5";
@@ -19,8 +21,7 @@ stdenv.mkDerivation {
     homepage = https://www.lri.fr/~filliatr/functory/;
     description = "A distributed computing library for Objective Caml which facilitates distributed execution of parallelizable computations in a seamless fashion";
     license = licenses.lgpl21;
+    maintainers = [ maintainers.vbgl ];
     platforms = ocaml.meta.platforms;
   };
 }
-
-