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

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

17 lines
302 B
Nix
Raw Normal View History

2022-03-16 16:30:52 +00:00
{ 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";
};
}