13 lines
195 B
Nix
13 lines
195 B
Nix
{ buildDunePackage, dune }:
|
|
|
|
buildDunePackage {
|
|
pname = "ordering";
|
|
inherit (dune) version src;
|
|
|
|
dontAddPrefix = true;
|
|
|
|
meta = dune.meta // {
|
|
description = "Element ordering";
|
|
};
|
|
}
|