nixpkgs/pkgs/development/ocaml-modules/dyn/default.nix
2022-03-28 07:08:14 +02:00

17 lines
270 B
Nix

{ lib, buildDunePackage, dune_3, ordering }:
buildDunePackage {
pname = "dyn";
inherit (dune_3) version src;
duneVersion = "3";
dontAddPrefix = true;
propagatedBuildInputs = [ ordering ];
meta = dune_3.meta // {
description = "Dynamic type";
};
}