Files
Ali Caglayan 6e2f074b05 dune_3: 3.20.2 -> 3.21.1
added:
- ocamlPackages.fs-io
- ocamlPackages.top-closure

Cleaned up the dune packages, making the dependencies explicit and
removing legacy preBuild steps.

Signed-off-by: Ali Caglayan <alizter@gmail.com>
2026-02-13 13:28:05 +01:00

22 lines
424 B
Nix

{
lib,
buildDunePackage,
dune-action-plugin,
}:
buildDunePackage {
pname = "dune-build-info";
inherit (dune-action-plugin) src version;
dontAddPrefix = true;
buildInputs = [ dune-action-plugin ];
meta = {
inherit (dune-action-plugin.meta) homepage;
description = "Embed build information inside executables";
maintainers = [ lib.maintainers.bcdarwin ];
license = lib.licenses.mit;
};
}