43dc4612b0
upstream does that as well: https://github.com/anmonteiro/nix-overlays/blob/8bc4e7e5f4d7579d5875ec1c11f5f20bb632b1fc/ocaml/dune/stdune.nix#L11 needed for ocaml-lsp
21 lines
361 B
Nix
21 lines
361 B
Nix
{ lib, buildDunePackage, dune_3, dyn, ordering, csexp }:
|
|
|
|
buildDunePackage {
|
|
pname = "stdune";
|
|
inherit (dune_3) version src;
|
|
duneVersion = "3";
|
|
|
|
dontAddPrefix = true;
|
|
|
|
propagatedBuildInputs = [ dyn ordering csexp ];
|
|
|
|
preBuild = ''
|
|
rm -r vendor/csexp
|
|
'';
|
|
|
|
meta = dune_3.meta // {
|
|
description = "Dune's unstable standard library";
|
|
};
|
|
}
|
|
|