16 lines
302 B
Nix
16 lines
302 B
Nix
{ lib, buildDunePackage, dune_3, dyn, ordering }:
|
|
|
|
buildDunePackage {
|
|
pname = "stdune";
|
|
inherit (dune_3) version src;
|
|
duneVersion = "3";
|
|
|
|
dontAddPrefix = true;
|
|
|
|
propagatedBuildInputs = [ dyn ordering ];
|
|
|
|
meta = dune_3.meta // {
|
|
description = "Dune's unstable standard library";
|
|
};
|
|
}
|
|
|