From b19721dc2a8ceb8d1f46260aad0d5a8783a4b499 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 16 Mar 2022 17:30:52 +0100 Subject: ocamlPackages.stdune: init at 3.0.3 --- pkgs/development/ocaml-modules/stdune/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pkgs/development/ocaml-modules/stdune/default.nix (limited to 'pkgs/development') 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"; + }; +} + -- cgit 1.4.1