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

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

15 lines
259 B
Nix
Raw Normal View History

2022-03-16 17:30:46 +01:00
{ lib, buildDunePackage, dune_3 }:
buildDunePackage {
pname = "ordering";
inherit (dune_3) version src;
duneVersion = "3";
minimalOCamlVersion = "4.08";
2022-03-16 17:30:46 +01:00
dontAddPrefix = true;
meta = dune_3.meta // {
description = "Element ordering";
};
}