depot/third_party/nixpkgs/pkgs/development/ocaml-modules/dyn/default.nix

17 lines
270 B
Nix
Raw Normal View History

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