summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2019-11-25 15:43:05 -0500
committerBen Darwin <bcdarwin@gmail.com>2019-11-29 11:12:08 -0500
commit06ddb4a49ffeccf49aac2a2fdb68926d0520e462 (patch)
treeee29b65188f40f08c091e299c827e53eacae699a /pkgs/development/ocaml-modules
parenteb1efb718c765c6288b80371b71c9657923c65b3 (diff)
downloadnixpkgs-06ddb4a49ffeccf49aac2a2fdb68926d0520e462.tar
nixpkgs-06ddb4a49ffeccf49aac2a2fdb68926d0520e462.tar.gz
nixpkgs-06ddb4a49ffeccf49aac2a2fdb68926d0520e462.tar.bz2
nixpkgs-06ddb4a49ffeccf49aac2a2fdb68926d0520e462.tar.lz
nixpkgs-06ddb4a49ffeccf49aac2a2fdb68926d0520e462.tar.xz
nixpkgs-06ddb4a49ffeccf49aac2a2fdb68926d0520e462.tar.zst
nixpkgs-06ddb4a49ffeccf49aac2a2fdb68926d0520e462.zip
ocamlPackages.parany: init at 7.0.0
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/parany/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/parany/default.nix b/pkgs/development/ocaml-modules/parany/default.nix
new file mode 100644
index 00000000000..5c02e3efea0
--- /dev/null
+++ b/pkgs/development/ocaml-modules/parany/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildDunePackage, fetchFromGitHub, ocamlnet, setcore }:
+
+buildDunePackage rec {
+  pname = "parany";
+  version = "7.0.0";
+
+  src = fetchFromGitHub {
+    owner = "UnixJunkie";
+    repo   = pname;
+    rev    = "v${version}";
+    sha256 = "0kylhgi1d4gj68x40ifli7pnrxkdc6ks5mgfvlcsigqg8i8nvc7q";
+  };
+
+  propagatedBuildInputs = [ ocamlnet setcore ];
+
+  meta = with stdenv.lib; {
+    inherit (src.meta) homepage;
+    description = "Generalized map/reduce for multicore computing";
+    maintainers = [ maintainers.bcdarwin ];
+    license = licenses.lgpl2;
+  };
+}