about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ordering/default.nix
blob: c3bffc013f95e11ae6f135c20dd323bcf25a8add (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, buildDunePackage, dune_3 }:

buildDunePackage {
  pname = "ordering";
  inherit (dune_3) version src;
  duneVersion = "3";

  dontAddPrefix = true;

  meta = dune_3.meta // {
    description = "Element ordering";
  };
}