depot/third_party/nixpkgs/pkgs/development/ocaml-modules/dyn/default.nix
Default email 8a45d4525b Project import generated by Copybara.
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
2022-03-30 11:31:56 +02:00

16 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";
};
}