6e2f074b05
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>
22 lines
424 B
Nix
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;
|
|
};
|
|
}
|