about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-03-16 17:30:52 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2022-03-28 07:08:14 +0200
commitb19721dc2a8ceb8d1f46260aad0d5a8783a4b499 (patch)
tree914ebd1f0ce498172653252c1dd6e2936567ab7e /pkgs/development/ocaml-modules
parentab97541807bc7126d577cdc75f46e07a5b052e7b (diff)
downloadnixlib-b19721dc2a8ceb8d1f46260aad0d5a8783a4b499.tar
nixlib-b19721dc2a8ceb8d1f46260aad0d5a8783a4b499.tar.gz
nixlib-b19721dc2a8ceb8d1f46260aad0d5a8783a4b499.tar.bz2
nixlib-b19721dc2a8ceb8d1f46260aad0d5a8783a4b499.tar.lz
nixlib-b19721dc2a8ceb8d1f46260aad0d5a8783a4b499.tar.xz
nixlib-b19721dc2a8ceb8d1f46260aad0d5a8783a4b499.tar.zst
nixlib-b19721dc2a8ceb8d1f46260aad0d5a8783a4b499.zip
ocamlPackages.stdune: init at 3.0.3
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/stdune/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/stdune/default.nix b/pkgs/development/ocaml-modules/stdune/default.nix
new file mode 100644
index 000000000000..fd1e4f987b40
--- /dev/null
+++ b/pkgs/development/ocaml-modules/stdune/default.nix
@@ -0,0 +1,16 @@
+{ lib, buildDunePackage, dune_3, dyn, ordering }:
+
+buildDunePackage {
+  pname = "stdune";
+  inherit (dune_3) version src;
+  duneVersion = "3";
+
+  dontAddPrefix = true;
+
+  propagatedBuildInputs = [ dyn ordering ];
+
+  meta = dune_3.meta // {
+    description = "Dune's unstable standard library";
+  };
+}
+