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

15 lines
259 B
Nix
Raw Normal View History

{ lib, buildDunePackage, dune_3 }:
buildDunePackage {
pname = "ordering";
inherit (dune_3) version src;
duneVersion = "3";
minimalOCamlVersion = "4.08";
dontAddPrefix = true;
meta = dune_3.meta // {
description = "Element ordering";
};
}