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
254 B
Nix
Raw Permalink Normal View History

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