about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/dyn/default.nix
blob: 81b9e0d745fb676be0cda9cf94c0f2615777f50f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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";
  };
}