depot/pkgs/development/ocaml-modules/stdune/default.nix

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

21 lines
356 B
Nix
Raw Normal View History

{ 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";
};
}