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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
271 B
Nix
Raw Normal View History

{
buildDunePackage,
dune_3,
ordering,
}:
2022-03-16 16:30:49 +00:00
buildDunePackage {
pname = "dyn";
inherit (dune_3) version src;
duneVersion = "3";
dontAddPrefix = true;
propagatedBuildInputs = [ ordering ];
meta = dune_3.meta // {
description = "Dynamic type";
};
}